Some checks failed
CI - Lint, Typecheck & Test / quality-assurance (push) Failing after 43s
39 lines
708 B
YAML
39 lines
708 B
YAML
name: CI - Lint, Typecheck & Test
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
quality-assurance:
|
|
runs-on: docker
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v3
|
|
with:
|
|
version: 10
|
|
run_install: false
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: 'pnpm'
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: 🔍 Lint
|
|
run: npm run lint
|
|
|
|
- name: 🏗️ Typecheck
|
|
run: npm run typecheck
|
|
|
|
- name: 🧪 Test
|
|
run: npm run test
|