File tree 1 file changed +28
-1
lines changed
1 file changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -37,12 +37,39 @@ jobs:
37
37
- name : Test
38
38
run : npm test
39
39
40
+ back-compat-oldest-node :
41
+ runs-on : ubuntu-latest
42
+
43
+ strategy :
44
+ matrix :
45
+ node-version : [16.x]
46
+ # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
47
+
48
+ steps :
49
+ - name : Checkout
50
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
51
+
52
+ - name : Use Node.js ${{ matrix.node-version }}
53
+ uses : actions/setup-node@v4
54
+ with :
55
+ node-version : ${{ matrix.node-version }}
56
+ cache : " npm"
57
+
58
+ - name : Install
59
+ run : npm ci --ignore-scripts
60
+
61
+ - name : Build
62
+ run : npm run build --if-present
63
+
64
+ - name : Test
65
+ run : npm test
66
+
40
67
build :
41
68
runs-on : ubuntu-latest
42
69
43
70
strategy :
44
71
matrix :
45
- node-version : [16.x, lts/*]
72
+ node-version : [lts/*]
46
73
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
47
74
48
75
steps :
You can’t perform that action at this time.
0 commit comments