Skip to content

Commit

Permalink
Avoid duplicate linting
Browse files Browse the repository at this point in the history
The `lint` job validates our linting setup, so the other jobs only need
to run `test:jest`.

Note: we want to keep `npm test` running linting so that
contributors have a normal experience of knowing when a given change is
"good" or "bad".
  • Loading branch information
rwjblue committed Oct 7, 2022
1 parent 37d1e72 commit 621fd63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
cache: npm
- name: install dependencies
run: npm ci
- run: npm test
- run: npm run test:jest

release-it-compat:
name: "release-it@${{ matrix.release-it-version }}"
Expand All @@ -56,4 +56,4 @@ jobs:
- name: install dependencies
run: npm ci
- run: npm install --saveDev release-it@${{ matrix.release-it-version }}
- run: npm test
- run: npm run test:jest

0 comments on commit 621fd63

Please sign in to comment.