Skip to content

Commit fe7743e

Browse files
authored
chore(deps-dev): Bump dependencies (#1347)
1 parent de72fc7 commit fe7743e

File tree

5 files changed

+1659
-2577
lines changed

5 files changed

+1659
-2577
lines changed

.github/workflows/nodejs-test.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ on:
99
env:
1010
CI: true
1111
FORCE_COLOR: 2
12-
NODE_COV: 16 # The Node.js version to run coveralls on
12+
NODE_COV: "lts/*" # The Node.js version to run coveralls on
13+
14+
permissions:
15+
contents: read
1316

1417
jobs:
1518
lint:
@@ -18,23 +21,27 @@ jobs:
1821
- uses: actions/checkout@v3
1922
- uses: actions/setup-node@v3
2023
with:
21-
node-version: 16
24+
node-version: lts/*
2225
cache: npm
2326
- run: npm ci
2427
- run: npm run lint
2528

2629
test:
30+
permissions:
31+
checks: write # for coverallsapp/github-action to create new checks
32+
contents: read # for actions/checkout to fetch code
2733
name: Node ${{ matrix.node }}
2834
runs-on: ubuntu-latest
2935

3036
strategy:
3137
fail-fast: false
3238
matrix:
3339
node:
34-
- 10
3540
- 12
3641
- 14
3742
- 16
43+
- 18
44+
- "lts/*"
3845

3946
steps:
4047
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)