Skip to content

Icon pipeline → public/, delete static/, and run vitest in CI #1

Icon pipeline → public/, delete static/, and run vitest in CI

Icon pipeline → public/, delete static/, and run vitest in CI #1

Workflow file for this run

name: test
on:
pull_request:
branches: [master, main]
push:
branches: [master, main]
jobs:
vitest:
name: vitest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10.32.1
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install
run: pnpm install --frozen-lockfile
# The suite runs with the quarantine list in vitest.config.js applied —
# see tests/QUARANTINE.md for what is excluded and why.
- name: Run tests
run: pnpm test:ci