Skip to content

feat: node 20 and better ci #1

feat: node 20 and better ci

feat: node 20 and better ci #1

Workflow file for this run

name: Test
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '20.x'
- run: npm install
- name: Unit tests
run: npm run test