Skip to content

Set up GitHub actions #1

Set up GitHub actions

Set up GitHub actions #1

Workflow file for this run

name: Build, format, and test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20.x
- run: pnpm build
- run: pnpm prettier --check .