Skip to content

Commit 7252ff4

Browse files
naorpeledbherila
andcommitted
chore!: drop Node 14 and 16 support
Co-authored-by: Ben Herila <[email protected]>
1 parent de0d3b0 commit 7252ff4

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.github/workflows/pull-request.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
1-
name: 'CI'
1+
name: "CI"
22
on:
33
pull_request:
44
types: [opened, reopened, synchronize]
55
push:
66
branches:
7-
- main
87
- master
98

10-
env:
11-
NPM_VERSION: 10
12-
139
jobs:
1410
test:
1511
runs-on: ubuntu-latest
1612
strategy:
1713
matrix:
18-
node: [14, 16, 18, 20]
14+
node: [18, 20, 22]
1915
name: Node ${{ matrix.node }}
2016
steps:
21-
- name: 'Checkout latest code'
17+
- name: "Checkout latest code"
2218
uses: actions/checkout@v3
2319
with:
2420
ref: ${{ github.event.pull_request.head.sha }}
@@ -37,7 +33,7 @@ jobs:
3733
run: npm run test
3834

3935
lint:
40-
name: 'ESLint'
36+
name: "ESLint"
4137
runs-on: ubuntu-latest
4238
steps:
4339
- name: Checkout latest code
@@ -47,7 +43,7 @@ jobs:
4743
- name: Set up node
4844
uses: actions/setup-node@v3
4945
with:
50-
node-version: '16'
46+
node-version: "16"
5147
- name: Install dependencies
5248
run: npm ci
5349
- name: Run ESLint

0 commit comments

Comments
 (0)