Skip to content

try node 20

try node 20 #166

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- '*'
jobs:
unit-test:
strategy:
matrix:
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install nodejs dependencies
run: |
npm install -w web
shell: bash
- name: Build zod-models dependency
run: |
npm run build -w zod-models
shell: bash
- name: run unit tests
run: |
npm run test -w web
shell: bash