1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 19:34:34 +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
- name: Check Web Code Style
run: npm run lint-web
build-api:
runs-on: ubuntu-latest
@@ -48,6 +49,7 @@ jobs:
run: npm run build
env:
CI: true
build-web:
runs-on: ubuntu-latest
@@ -64,9 +66,10 @@ jobs:
- name: Install Dependencies
working-directory: ./web
run: npm ci
- name: Run Unit Tests
working-directory: ./web
run: npm test
# TODO: Uncomment next step when unit tests provided
# - name: Run Unit Tests
# working-directory: ./web
# run: npm test
- name: Build Package
working-directory: ./web
run: npm run build