Skip to content

Commit

Permalink
ci: used latest lts for the non-matrix verification job and audited s…
Browse files Browse the repository at this point in the history
…ignatures of installed deps
  • Loading branch information
travi committed Apr 28, 2023
1 parent 55c092a commit 7eeaa21
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
with:
cache: npm
node-version: lts/*
- run: npm ci
- run: npm clean-install
- run: npm audit signatures
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
with:
node-version: "${{ matrix.node-version }}"
cache: npm
- run: npm ci
- run: npm clean-install
- name: Ensure dependencies are compatible with the engines range
run: npx ls-engines
- run: "npm run test:ci"
test:
runs-on: ubuntu-latest
Expand All @@ -34,9 +36,8 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: lts/*
cache: npm
- run: npm ci
- name: Ensure dependencies are compatible with the engines range
run: npx ls-engines
- run: npm clean-install
- run: npm audit signatures
- run: npm run lint

0 comments on commit 7eeaa21

Please sign in to comment.