Skip to content

Merge branch '21-style-the-webpage' into main #60

Merge branch '21-style-the-webpage' into main

Merge branch '21-style-the-webpage' into main #60

Workflow file for this run

name: Vitest
permissions:
contents: read
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Enable Corepack and pnpm
run: corepack enable && corepack prepare pnpm@latest --activate
- name: Install dependencies
run: pnpm install --frozen-lockfile # acts like npm ci
- name: Run tests
run: pnpm test