Skip to content

The teardown test waits for the branch to go, which is now the last t… #3573

The teardown test waits for the branch to go, which is now the last t…

The teardown test waits for the branch to go, which is now the last t… #3573

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
build:
# Prevent workflow being run twice, https://github.com/orgs/community/discussions/57827#discussioncomment-6579237
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
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
- run: pnpm build
- run: pnpm typecheck
- run: pnpm test