Skip to content

chore(deps): bump brace-expansion and eslint #94

chore(deps): bump brace-expansion and eslint

chore(deps): bump brace-expansion and eslint #94

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: "20.19"
cache: npm
cache-dependency-path: package-lock.json
- run: npm install
- run: npm run lint
server:
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: "20.19"
cache: npm
cache-dependency-path: server/package-lock.json
- run: npm install
- run: npm run typecheck
- run: npm test
- run: npm run build
- run: npm audit --omit=dev --audit-level=high
continue-on-error: true
web:
runs-on: ubuntu-latest
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: "20.19"
cache: npm
cache-dependency-path: web/package-lock.json
- run: npm install
- run: npm test
- run: npm run build
- run: npm audit --omit=dev --audit-level=high
continue-on-error: true