Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
node-version: '24'
cache: 'npm'
cache-dependency-path: 'client/package-lock.json'
- name: Install dependencies
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/client-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 22
- name: Install npm 10
run: npm install -g npm@10
node-version: 24
- name: Install dependencies
run: npm ci
- name: Run tests
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/nodelint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 22
- run: npm install -g npm@10
node-version: 24
- run: npm ci
- run: npm run ci-lint
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:22-bookworm AS node_build
FROM node:24-bookworm AS node_build

RUN npm install npm@10 -g
# npm 11 bundled with Node 24, no separate install needed
RUN mkdir -p /server/static

COPY /client/package.json /client/package.json
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ A digital script project for cueing theatrical shows

### Requirements

* Node v22.x (npm 10.x)
* Node v24.x (npm 11.x)
* Python 3.13.x

### Client
Expand Down
Loading
Loading