Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed Oct 14, 2021
1 parent 719f607 commit 21daf82
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/NodeCI.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.13.x, 12.x, 13.x, 14.x]
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -33,6 +33,24 @@ jobs:
run: npm install
- name: Test
run: npm test
test-for-node10-13:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.13.x, 13.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Target Packages
run: |+
npm i -D eslint@7
npx rimraf node_modules
npm install
- name: Test
run: npm test
test-and-coverage:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 21daf82

Please sign in to comment.