Skip to content

docs: document automated integration tests in AGENTS.md #86

docs: document automated integration tests in AGENTS.md

docs: document automated integration tests in AGENTS.md #86

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install dependencies
run: npm install --legacy-peer-deps
- name: Lint
run: npm run lint
- name: Run tests
run: npm test
- name: Build
run: npm run build