Skip to content

Use @typescript-eslint/recommended-type-checked for lint #483

Use @typescript-eslint/recommended-type-checked for lint

Use @typescript-eslint/recommended-type-checked for lint #483

Workflow file for this run

name: Tracker&Griffin tests
on:
pull_request:
merge_group:
jobs:
build:
runs-on: ubuntu-latest
env:
BASE_SHA: '${{ github.event.pull_request.base.sha || github.event.merge_group.base_sha }}'
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: fetch base commit
run: git fetch --depth=1 origin "$BASE_SHA"
- name: npm install
run: npm install
- name: typecheck:scripts
run: npm run typecheck:scripts
- name: build
run: npm run build
- name: run tests
run: npm run test
- name: lint
run: npm run lint -- --base "$BASE_SHA"