Skip to content

Bump the minor group with 10 updates #119

Bump the minor group with 10 updates

Bump the minor group with 10 updates #119

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm check
if: always()
- run: pnpm lint
if: always()
- run: pnpm build
if: always()