Skip to content

馃悰 Suppress OPF-014 in single-file validation modes and other issues #238

馃悰 Suppress OPF-014 in single-file validation modes and other issues

馃悰 Suppress OPF-014 in single-file validation modes and other issues #238

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run linter
run: npm run lint
- name: Run type check
run: npm run typecheck
- name: Run tests
run: npm test -- --run
- name: Run packaging tests
run: npm run test:packaging