Skip to content

Fix back button navigating to current page #608

Fix back button navigating to current page

Fix back button navigating to current page #608

Workflow file for this run

name: Test Suite
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run all tests
run: npm test -- --run
- name: Build application
run: npm run build