Skip to content

Commit

Permalink
test: Separate build and lint steps in CI (#953)
Browse files Browse the repository at this point in the history
It is simpler to see the root cause when the tasks are separate steps.
  • Loading branch information
teogeb authored Jan 17, 2025
1 parent 6b96f53 commit fc534b8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ jobs:
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm ci --no-audit
- name: Build and lint
run: npm run build && npm run lint
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Unit tests
run: npm run test
fastchain-docker-image:
Expand Down

0 comments on commit fc534b8

Please sign in to comment.