Skip to content

fix(deps): bump chalk from 5.2.0 to 5.3.0 #46

fix(deps): bump chalk from 5.2.0 to 5.3.0

fix(deps): bump chalk from 5.2.0 to 5.3.0 #46

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@v3
- uses: actions/setup-node@v3
with:
node-version-file: 'package.json'
- run: npm audit --audit-level=critical
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: 'package.json'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
- run: npm run lint