Skip to content

Update Node.js version to 20 in workflow files #16

Update Node.js version to 20 in workflow files

Update Node.js version to 20 in workflow files #16

Workflow file for this run

name: "Test package"
on:
pull_request:
branches:
- "master"
types:
- "opened"
- "synchronize"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "Use Node.js"
uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
- name: "Install npm"
run: npm ci
- name: "Run all tests"
run: npm run test