Skip to content

keep footer buttons clickable #172

keep footer buttons clickable

keep footer buttons clickable #172

Workflow file for this run

name: Run Vitest
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
vitest_run:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Run harlight tests
run: pnpm --prefix packages/harlight exec vitest run
- name: Run dodom tests
run: pnpm --prefix packages/dodom exec vitest run
- name: Run reactor tests
run: pnpm --prefix packages/reactor exec vitest run