Skip to content

feat: compact-deployer tool #220

feat: compact-deployer tool

feat: compact-deployer tool #220

Workflow file for this run

name: Format and Lint
on:
pull_request:
push:
branches:
- main
jobs:
checks:
name: Run Checks
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: audit
- name: Check out code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
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