Skip to content

Commit b06941e

Browse files
author
Federico Builes
authored
Merge pull request #66 from takost/update-to-node-20
Update action to node20
2 parents 5d45e10 + 112d372 commit b06941e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Node
2020
uses: actions/setup-node@v3
2121
with:
22-
node-version: 16
22+
node-version: 20
2323

2424
- name: Install NPM dependencies
2525
run: npm ci --ignore-scripts

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ inputs:
1818
description: 'Build target to detect build dependencies. If unspecified, will use "all", with will detect all dependencies used in all build targets (including tests and tools).'
1919
default: 'all'
2020
runs:
21-
using: 'node16'
21+
using: 'node20'
2222
main: 'dist/index.js'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"format-check": "prettier --check '**/*.ts'",
1010
"lint": "eslint --fix src/**/*.ts",
1111
"package": "ncc build --source-map --license licenses.txt",
12-
"test": "jest",
12+
"test": "jest --forceExit",
1313
"test:watch": "jest --watch src",
1414
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
1515
},

0 commit comments

Comments
 (0)