Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
avalkov committed Jun 30, 2022
1 parent 18b2c69 commit 547757d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm install --legacy-peer-deps
run: npm install
- name: Run lint check
run: npm run lint
Unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm ci --legacy-peer-deps
run: npm ci
- name: Run tests
run: npm test -- --coverage
# - name: Upload coverage 📤
Expand All @@ -28,7 +28,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm ci --legacy-peer-deps
run: npm ci
- name: Run build check
run: npm run build
env:
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
legacy-peer-deps=true

0 comments on commit 547757d

Please sign in to comment.