20 lines
419 B
YAML
Executable File
20 lines
419 B
YAML
Executable File
name: ci
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
build-and-design:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "22"
|
|
- run: npm ci --no-audit --no-fund
|
|
- name: Full library verification
|
|
run: npm run check
|
|
- name: Published package smoke test
|
|
run: npm pack --dry-run
|