Skip to content

Commit

Permalink
chore!: remove support for node 10 and 15
Browse files Browse the repository at this point in the history
  • Loading branch information
opatiny authored and targos committed Oct 8, 2021
1 parent 3f485b3 commit ad0bc8b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
- uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 16.x
- name: Install dependencies
run: npm install
- name: Run ESLint
Expand All @@ -23,16 +23,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2-beta
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test-coverage
- name: Send coverage report to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v2

0 comments on commit ad0bc8b

Please sign in to comment.