Skip to content

release: compact-simulator v0.4.0 (#160) #301

release: compact-simulator v0.4.0 (#160)

release: compact-simulator v0.4.0 (#160) #301

Workflow file for this run

name: Format and Lint
on:
pull_request:
push:
branches:
- main
- beta
jobs:
checks:
name: Run Checks
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
with:
egress-policy: audit
- name: Check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 2 # Recommended by turbo team
- name: Setup Environment
uses: ./.github/actions/setup
- name: Format & Lint
run: yarn lint:ci
- name: Run type checks
run: yarn types
- name: Run tests
run: yarn test