Skip to content

fix(No-id): Fix no shapes #178

fix(No-id): Fix no shapes

fix(No-id): Fix no shapes #178

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
paths:
- .github/workflows/frontend-tests.yml
- frontend/**
pull_request:
paths:
- .github/workflows/frontend-tests.yml
- frontend/**
jobs:
vitests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run Vitests
run: |
npm run test
playwright-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: |
npm ci
npx playwright install --with-deps
- name: Run playwright tests
run: npx playwright test