Skip to content

close issue #103

close issue #103 #30

name: Run frontend test suite
on:
pull_request:
paths:
- '**.ts'
jobs:
test-frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: './frontend'
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ vars.NODE_VERSION }}
cache-dependency-path: '**/package-lock.json'
cache: 'npm'
- run: npm ci
- run: npm run test