Skip to content

docs: v0.2.1 OSS ergonomics (AGENTS, CONTRIBUTING, SECURITY, template… #11

docs: v0.2.1 OSS ergonomics (AGENTS, CONTRIBUTING, SECURITY, template…

docs: v0.2.1 OSS ergonomics (AGENTS, CONTRIBUTING, SECURITY, template… #11

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: ${{ matrix.os }} / node ${{ matrix.node }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
node: ['18.18', '20', '22']
defaults:
run:
working-directory: plugins/cursor
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
cache-dependency-path: plugins/cursor/package-lock.json
- run: npm ci
- name: Test
run: npm test
- name: Lint
run: npm run lint