Skip to content

Upgrade to node 20

Upgrade to node 20 #30

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["16.x", "20.x"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: build_and_test
run: |
npm install
npm test
env:
CI: true