Skip to content

Commit 06546dc

Browse files
(actions) run on node 18 & 20 (#669)
* (actions) also run on node 18 & 20 * (actions) drop node 14 & 16 * (actions) generate docs on node 20
1 parent 9a5a513 commit 06546dc

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/setup-node@v4
1414
with:
1515
cache: npm
16-
node-version: 16
16+
node-version: 20
1717
- name: Install
1818
run: npm ci
1919
- name: Generate docs

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
node_version: [14, 16]
13+
node_version: [18, 20]
1414
steps:
1515
- uses: actions/checkout@v4
1616
env:
@@ -30,7 +30,7 @@ jobs:
3030
- name: Test
3131
run: npm test
3232
- uses: stefanzweifel/git-auto-commit-action@v5
33-
if: ${{ github.event_name == 'push' && endsWith(github.ref, 'develop') && matrix.node_version == 16 }}
33+
if: ${{ github.event_name == 'push' && endsWith(github.ref, 'develop') && matrix.node_version == 20 }}
3434
with:
3535
commit_message: Update Build
3636
file_pattern: 'build/*.js'

0 commit comments

Comments
 (0)