Skip to content

Commit 285ce62

Browse files
authored
feat!: drop Node below 18 support
1 parent 351b0a3 commit 285ce62

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/merge-to-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Merge to master'
1+
name: "Merge to master"
22

33
on:
44
push:
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
node-version: [14.x]
13+
node-version: [20.x]
1414

1515
steps:
1616
- name: Get branch name (merge)

.github/workflows/pull-request.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Pull Request'
1+
name: "Pull Request"
22
on:
33
pull_request:
44
types: [opened, reopened, synchronize]
@@ -8,10 +8,10 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node: [14, 16, 18]
11+
node: [18, 20, 22]
1212
name: Node ${{ matrix.node }}
1313
steps:
14-
- name: 'Checkout latest code'
14+
- name: "Checkout latest code"
1515
uses: actions/checkout@v3
1616
with:
1717
ref: ${{ github.event.pull_request.head.sha }}
@@ -25,7 +25,7 @@ jobs:
2525
run: npm run test
2626

2727
lint:
28-
name: 'ESLint'
28+
name: "ESLint"
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout latest code
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up node
3636
uses: actions/setup-node@v3
3737
with:
38-
node-version: '16'
38+
node-version: "20"
3939
- name: Install dependencies
4040
run: npm install
4141
- name: Run ESLint

0 commit comments

Comments
 (0)