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

update deps

update deps #30

Workflow file for this run

name: Run tests using Vitest
on:
push:
branches:
- '**'
paths-ignore:
- 'REAdME.md'
- 'LICENSE'
- '.github/**'
- '.gitignore'
pull_request:
branches:
- main
paths-ignore:
- 'REAdME.md'
- 'LICENSE'
- '.github/**'
- '.gitignore'
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
- run: pnpm run test