Skip to content

Initial commit

Initial commit #5

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- main
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
run_install: false
- name: Set Node.js version
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install application dependencies
run: pnpm install --frozen-lockfile
- name: Check formatting
run: pnpm format:check
- name: Check types
run: pnpm types:check
- name: Check linting
run: pnpm lint