Skip to content

rewrite, add tons of output options #1

rewrite, add tons of output options

rewrite, add tons of output options #1

Workflow file for this run

name: Checks
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
permissions:
contents: read
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: pnpm
- run: pnpm install --frozen-lockfile --ignore-scripts
- name: Type and formatting checks
run: pnpm lint
- name: Unit tests
run: pnpm test
- name: Build
env:
GH_TOKEN: ${{ github.token }}
RELEASE_REPOSITORY: ${{ github.repository }}
run: pnpm prepare