Skip to content

pr-checks

pr-checks #3172

Workflow file for this run

name: pr-checks
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
merge_group:
jobs:
build-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
submodules: recursive
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Lint
run: make lint
- name: Build
run: make build
- name: Test
run: make test