Skip to content

Commit 2ce84a1

Browse files
committed
- Drop testing EOL Node 6 and Node 8
1 parent 2a63986 commit 2ce84a1

File tree

1 file changed

+1
-31
lines changed

1 file changed

+1
-31
lines changed

.github/workflows/NodeCI.yml

+1-31
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
node-version: [10, 12]
26+
node-version: [10, 12, 14]
2727
steps:
2828
- uses: actions/checkout@v2
2929
- name: Use Node.js ${{ matrix.node-version }}
@@ -36,33 +36,3 @@ jobs:
3636
run: npm run build
3737
- name: Test
3838
run: npm run test:ci
39-
test-with-node8:
40-
runs-on: ubuntu-latest
41-
steps:
42-
- uses: actions/checkout@v2
43-
- name: Use Node.js 8
44-
uses: actions/setup-node@v2
45-
with:
46-
node-version: 8
47-
- name: Install Packages
48-
run: |+
49-
npm install
50-
npm install --no-save "eslint@5"
51-
- name: Build
52-
run: npm run build
53-
- name: Test
54-
run: npm run test:ci
55-
test-with-node6:
56-
runs-on: ubuntu-latest
57-
steps:
58-
- uses: actions/checkout@v2
59-
- name: Use Node.js 6
60-
uses: actions/setup-node@v2
61-
with:
62-
node-version: 6
63-
- name: Install Packages
64-
run: |+
65-
npm install
66-
npm install --no-save "eslint@5" [email protected] [email protected]
67-
- name: Test
68-
run: npm run test:ci

0 commit comments

Comments
 (0)