Skip to content

Bring SableCall Up-to-Date With ElementCall Upstream #13

Bring SableCall Up-to-Date With ElementCall Upstream

Bring SableCall Up-to-Date With ElementCall Upstream #13

Workflow file for this run

name: Lint, format & type check
on:
pull_request: {}
jobs:
prettier:
name: Lint, format & type check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@f40ffcd9367d9f12939873eb1018b921a783ffaa # v4
with:
version: 9
- name: pnpm cache
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
cache: "pnpm"
node-version-file: ".node-version"
- name: Install dependencies
run: "pnpm install --frozen-lockfile"
- name: format check
run: "pnpm run format:check"
- name: i18n check
run: "pnpm run i18n:check"
- name: oxlint
run: "pnpm run lint:oxlint"
- name: tsc
run: "pnpm run lint:types"
- name: knip
run: "pnpm run lint:knip"