Skip to content

chore(deps): bump the github-actions group across 1 directory with 2 updates #42

chore(deps): bump the github-actions group across 1 directory with 2 updates

chore(deps): bump the github-actions group across 1 directory with 2 updates #42

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "main" ]
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
cache-dependency-path: ./doc-server/package-lock.json
- name: Install dependencies
working-directory: ./doc-server
run: npm install --legacy-peer-deps
- name: Build
working-directory: ./doc-server
run: npm run build --legacy-peer-deps
- name: Lint
working-directory: ./doc-server
run: npm run lint