Skip to content

refactor: update docker image build steps in test workflow for clarity #186

refactor: update docker image build steps in test workflow for clarity

refactor: update docker image build steps in test workflow for clarity #186

Workflow file for this run

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