1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-15 09:50:06 +00:00

chore(workflow): disable 'Run Unit Tests' step for web

This commit is contained in:
Yury Shkoda
2021-10-20 15:56:40 +03:00
parent 65a57acff6
commit c0ec406b2a

View File

@@ -24,6 +24,7 @@ jobs:
run: npm run lint-api run: npm run lint-api
- name: Check Web Code Style - name: Check Web Code Style
run: npm run lint-web run: npm run lint-web
build-api: build-api:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -48,6 +49,7 @@ jobs:
run: npm run build run: npm run build
env: env:
CI: true CI: true
build-web: build-web:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -64,9 +66,10 @@ jobs:
- name: Install Dependencies - name: Install Dependencies
working-directory: ./web working-directory: ./web
run: npm ci run: npm ci
- name: Run Unit Tests # TODO: Uncomment next step when unit tests provided
working-directory: ./web # - name: Run Unit Tests
run: npm test # working-directory: ./web
# run: npm test
- name: Build Package - name: Build Package
working-directory: ./web working-directory: ./web
run: npm run build run: npm run build