Skip to content

Update node

Update node #127

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 11, Col: 3): A sequence was not expected
on:
pull_request:
push:
branches-ignore:
- main
- develop
env:
- FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
releasenew:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- name: Install Dependencies
run: npm ci --no-fund --no-audit
- name: Build main with VitePress
run: |
npm run -w main docs:build
- name: Build repo with VitePress
run: |
npm run -w repo docs:build
- name: Build pigeonhole with VitePress
run: |
npm run -w pigeonhole docs:build