Skip to content

Fix all test errors: TypeScript, ESLint, and HTML issues #2

Fix all test errors: TypeScript, ESLint, and HTML issues

Fix all test errors: TypeScript, ESLint, and HTML issues #2

Workflow file for this run

name: Test (pnpm)
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 8
- name: Clean install dependencies
run: |
rm -rf node_modules pnpm-lock.yaml
pnpm install
- name: Run tests
run: pnpm test