Skip to content

Commit

Permalink
chore: Do not run denolint in CI
Browse files Browse the repository at this point in the history
It fails because of a missing linux package.
  • Loading branch information
prantlf committed Apr 16, 2022
1 parent ac56874 commit b40d7ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run_install: |
- args: [--frozen-lockfile, --no-verify-store-integrity, --no-optional]
- name: Test
run: npm test
run: pnpm run ci
- name: Coverage
run: pnpx -y codecov
- name: Publish
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"lint": "denolint",
"check": "node test",
"cover": "c8 node test",
"test": "denolint && c8 node test"
"test": "denolint && c8 node test",
"ci": "c8 node test"
},
"c8": {
"100": true,
Expand Down

0 comments on commit b40d7ed

Please sign in to comment.