Skip to content

Commit ad0bc8b

Browse files
opatinytargos
authored andcommitted
chore!: remove support for node 10 and 15
1 parent 3f485b3 commit ad0bc8b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎.github/workflows/nodejs.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2
13-
- uses: actions/setup-node@v2-beta
13+
- uses: actions/setup-node@v2
1414
with:
15-
node-version: 14.x
15+
node-version: 16.x
1616
- name: Install dependencies
1717
run: npm install
1818
- name: Run ESLint
@@ -23,16 +23,16 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
node-version: [10.x, 12.x, 14.x, 15.x]
26+
node-version: [12.x, 14.x, 16.x]
2727
steps:
2828
- uses: actions/checkout@v2
2929
- name: Use Node.js ${{ matrix.node-version }}
30-
uses: actions/setup-node@v2-beta
30+
uses: actions/setup-node@v2
3131
with:
3232
node-version: ${{ matrix.node-version }}
3333
- name: Install dependencies
3434
run: npm install
3535
- name: Run tests
3636
run: npm run test-coverage
3737
- name: Send coverage report to Codecov
38-
uses: codecov/codecov-action@v1
38+
uses: codecov/codecov-action@v2

0 commit comments

Comments
 (0)