Skip to content

Commit 791983e

Browse files
ci: fix errors in ci github action for node 8 and add support for newer versions (#322)
PR-URL: #322
1 parent de19afc commit 791983e

File tree

1 file changed

+33
-4
lines changed

1 file changed

+33
-4
lines changed

.github/workflows/ci.yml

+33-4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818
- Node.js 12.x
1919
- Node.js 14.x
2020
- Node.js 16.x
21+
- Node.js 17.x
22+
- Node.js 18.x
23+
- Node.js 19.x
24+
- Node.js 20.x
25+
- Node.js 21.x
26+
- Node.js 22.x
2127

2228
include:
2329
- name: Node.js 0.10
@@ -34,7 +40,7 @@ jobs:
3440

3541
- name: Node.js 8.x
3642
node-version: "8.17"
37-
43+
3844

3945
- name: Node.js 10.x
4046
node-version: "10.24"
@@ -49,8 +55,26 @@ jobs:
4955
- name: Node.js 16.x
5056
node-version: "16.6"
5157

58+
- name: Node.js 17.x
59+
node-version: "17.6"
60+
61+
- name: Node.js 18.x
62+
node-version: "18.14"
63+
64+
- name: Node.js 19.x
65+
node-version: "19.6"
66+
67+
- name: Node.js 20.x
68+
node-version: "20.12"
69+
70+
- name: Node.js 21.x
71+
node-version: "21.7"
72+
73+
- name: Node.js 22.x
74+
node-version: "22.0"
75+
5276
steps:
53-
- uses: actions/checkout@v2
77+
- uses: actions/checkout@v4
5478

5579
- name: Install Node.js ${{ matrix.node-version }}
5680
shell: bash -eo pipefail -l {0}
@@ -59,7 +83,12 @@ jobs:
5983
dirname "$(nvm which ${{ matrix.node-version }})" >> "$GITHUB_PATH"
6084
6185
- name: Configure npm
62-
run: npm config set shrinkwrap false
86+
run: |
87+
if [[ "$(npm config get package-lock)" == "true" ]]; then
88+
npm config set package-lock false
89+
else
90+
npm config set shrinkwrap false
91+
fi
6392
6493
- name: Install npm module(s) ${{ matrix.npm-i }}
6594
run: npm install --save-dev ${{ matrix.npm-i }}
@@ -114,7 +143,7 @@ jobs:
114143
needs: test
115144
runs-on: ubuntu-latest
116145
steps:
117-
- name: Uploade code coverage
146+
- name: Upload code coverage
118147
uses: coverallsapp/github-action@master
119148
with:
120149
github-token: ${{ secrets.github_token }}

0 commit comments

Comments
 (0)