Skip to content

chore: update devdependencies #24

chore: update devdependencies

chore: update devdependencies #24

Workflow file for this run

name: Checks
on:
workflow_call:
push:
branches: [main]
pull_request:
types: [synchronize, opened, reopened, ready_for_review, converted_to_draft]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
checks:
name: Run Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Check Formatting
run: npm run formatting:check
# - name: Check Typing
# run: pnpm typecheck
- name: Lint
run: npm run lint