Skip to content

build: use node 20 on workflow actions #47

build: use node 20 on workflow actions

build: use node 20 on workflow actions #47

Workflow file for this run

name: Test
on: [push, pull_request]
permissions: read-all
concurrency:
group: ${{ github.ref_name }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies and link
run: npm ci && npm link
- name: Run tests
run: npm run test