Merge pull request #66 from takost/update-to-node-20

Update action to node20
This commit is contained in:
Federico Builes
2023-12-01 17:47:25 +01:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
- name: Install NPM dependencies
run: npm ci --ignore-scripts

View File

@@ -18,5 +18,5 @@ inputs:
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).'
default: 'all'
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'

View File

@@ -9,7 +9,7 @@
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint --fix src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"test": "jest --forceExit",
"test:watch": "jest --watch src",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},