Skip to content

Add Action for running tests #1

Add Action for running tests

Add Action for running tests #1

Workflow file for this run

name: run-tests
on: [push]
jobs:
run-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20'
- run: pnpm ci
- run: pnpm test