Skip to content

chore: flip public, add publishConfig, update CI #7

chore: flip public, add publishConfig, update CI

chore: flip public, add publishConfig, update CI #7

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
ci:
name: Build, Lint & Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm install --include=dev
- name: Lint
run: npm run lint
continue-on-error: true # Lint tooling not yet configured — remove once ESLint is wired up
- name: Test
run: npm test
continue-on-error: true # Test suite not yet written — remove once tests exist
- name: Build
run: npm run build