Skip to content

ci: bump github workflow #16

ci: bump github workflow

ci: bump github workflow #16

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm install
- run: pnpm format:check
- run: pnpm lint
- run: pnpm test
- uses: codecov/codecov-action@v3
- run: pnpm build