Skip to content

Add test utils, logger improvements, general polish #6

Add test utils, logger improvements, general polish

Add test utils, logger improvements, general polish #6

Workflow file for this run

# https://turbo.build/repo/docs/ci/github-actions
name: Pull Request
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
verify:
runs-on: ubuntu-latest
strategy:
matrix:
tasks: [lint, build, typecheck, "test:ci"]
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run ${{ matrix.tasks }}
run: yarn ${{ matrix.tasks }}