Skip to content

fix: resolve browser back/forward navigation requiring double-press #1200

fix: resolve browser back/forward navigation requiring double-press

fix: resolve browser back/forward navigation requiring double-press #1200

Workflow file for this run

name: Unit Tests and Linting
on:
push:
merge_group:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run Unit Tests
run: npm run test