Skip to content

Commit

Permalink
- Drop testing EOL Node 6 and Node 8; add Node 14
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed Feb 2, 2021
1 parent 2a63986 commit 97e6f70
Showing 1 changed file with 1 addition and 31 deletions.
32 changes: 1 addition & 31 deletions .github/workflows/NodeCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10, 12]
node-version: [10, 12, 14]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -36,33 +36,3 @@ jobs:
run: npm run build
- name: Test
run: npm run test:ci
test-with-node8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 8
uses: actions/setup-node@v2
with:
node-version: 8
- name: Install Packages
run: |+
npm install
npm install --no-save "eslint@5"
- name: Build
run: npm run build
- name: Test
run: npm run test:ci
test-with-node6:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 6
uses: actions/setup-node@v2
with:
node-version: 6
- name: Install Packages
run: |+
npm install
npm install --no-save "eslint@5" [email protected] [email protected]
- name: Test
run: npm run test:ci

0 comments on commit 97e6f70

Please sign in to comment.