Skip to content

chore: clean up beta #98

chore: clean up beta

chore: clean up beta #98

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, beta]
types: [opened, reopened, synchronize, edited]
jobs:
audit:
name: Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- run: npm audit --audit-level=critical
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
- run: npm run lint