Merge branch 'main' into dependabot/pip/server/jinja2-3.1.5 #190
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests (Frontend) | |
on: [push] | |
jobs: | |
vite-test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: client | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install packages | |
run: npm ci | |
- name: Print file tree (excluding node_modules) | |
run: tree -I 'node_modules' | |
- name: Run lint | |
run: npm run lint | |
- name: Build front-end files | |
run: npm run build | |
- name: Run tests | |
run: npm test |