Skip to content

feat: add assembly line, component registry, quality checks, and expa… #8

feat: add assembly line, component registry, quality checks, and expa…

feat: add assembly line, component registry, quality checks, and expa… #8

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build
- run: npm test