Skip to content

Bump the minor group with 1 update #81

Bump the minor group with 1 update

Bump the minor group with 1 update #81

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: latest
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm check
if: always()
- run: pnpm lint
if: always()
- run: pnpm build
if: always()