Skip to content

added keepout

added keepout #18

Workflow file for this run

# Created using @tscircuit/plop (npm install -g @tscircuit/plop)
name: NPM Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build
run: |
npm run build || true
- name: Run tests
run: npm run test