Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Initial commit

Initial commit #5

Workflow file for this run

name: Run tests using Vitest
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run lint && pnpm run test