Skip to content

Bump all deps, misc cleanup #1

Bump all deps, misc cleanup

Bump all deps, misc cleanup #1

Workflow file for this run

# https://turbo.build/repo/docs/ci/github-actions

Check failure on line 1 in .github/workflows/pull-request.yml

View workflow run for this annotation

GitHub Actions / Pull Request

Invalid workflow file

The workflow is not valid. .github/workflows/pull-request.yml: (Line: 18, Col: 41, Idx: 377) - (Line: 18, Col: 45, Idx: 381): While scanning a plain scalar, find unexpected ':'.
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 }}