We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00824af commit b662361Copy full SHA for b662361
.github/workflows/tests.yml
@@ -20,7 +20,6 @@ jobs:
20
fail-fast: false
21
matrix:
22
node_version:
23
- - 14
24
- 16
25
- 18
26
@@ -31,15 +30,10 @@ jobs:
31
30
uses: actions/checkout@v3
32
33
- name: Setup
34
- uses: actions/setup-node@v2.5.1
+ uses: actions/setup-node@v3
35
with:
36
node-version: ${{matrix.node_version}}
37
38
- # See https://github.com/npm/cli/issues/2610
39
- - name: Workaround for Node 14
40
- if: matrix.node_version == '14'
41
- run: sed -i 's/git+ssh/git+https/g' package-lock.json
42
-
43
- name: Install
44
run: npm ci
45
@@ -83,9 +77,9 @@ jobs:
83
77
84
78
85
79
86
80
87
81
88
- node-version: 16
82
+ node-version: 18
89
90
91
run: npm ci --ignore-scripts
0 commit comments