Skip to content

More logging

More logging #14

Workflow file for this run

name: PR Checks
on: pull_request
jobs:
test:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: install dependencies
run: pnpm install --frozen-lockfile
- name: run linter
run: pnpm lint
- name: Build
run: pnpm build