Files
grimoire/.github/workflows/qa.yml
Alejandro 14f19a4517 Remove lint job from QA workflow (#157)
The lint CI check was more annoying than helpful.

Co-authored-by: Claude <noreply@anthropic.com>
2026-01-19 16:40:44 +01:00

45 lines
765 B
YAML

name: QA
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:run