Skip to content

Commit 7eeaa21

Browse files
committed
ci: used latest lts for the non-matrix verification job and audited signatures of installed deps
1 parent 55c092a commit 7eeaa21

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
with:
2424
cache: npm
2525
node-version: lts/*
26-
- run: npm ci
26+
- run: npm clean-install
27+
- run: npm audit signatures
2728
- run: npx semantic-release
2829
env:
2930
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ jobs:
2525
with:
2626
node-version: "${{ matrix.node-version }}"
2727
cache: npm
28-
- run: npm ci
28+
- run: npm clean-install
29+
- name: Ensure dependencies are compatible with the engines range
30+
run: npx ls-engines
2931
- run: "npm run test:ci"
3032
test:
3133
runs-on: ubuntu-latest
@@ -34,9 +36,8 @@ jobs:
3436
- uses: actions/checkout@v3
3537
- uses: actions/setup-node@v3
3638
with:
37-
node-version: 16
39+
node-version: lts/*
3840
cache: npm
39-
- run: npm ci
40-
- name: Ensure dependencies are compatible with the engines range
41-
run: npx ls-engines
41+
- run: npm clean-install
42+
- run: npm audit signatures
4243
- run: npm run lint

0 commit comments

Comments
 (0)