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
4 changes: 2 additions & 2 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
with:
fetch-depth: 0 # Required to retrieve git history
ref: ${{ github.event.pull_request.head.ref }} # Tell the checkout which commit hash to reference
- name: Use Node.js 20.x
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "22.x"
- name: Install dependencies
run: npm ci
- run: npm run sync
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "22.x"

- name: Install dependencies
run: npm ci
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "22.x"
- run: npm ci
- run: npm run sync
- run: npm run build
Expand All @@ -30,10 +30,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "22.x"
- run: npm ci
- run: npm run sync
- run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.14.0
22.20.0
4 changes: 1 addition & 3 deletions local.builder.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
version: "3"

services:
base:
image: node:20
image: node:22
volumes:
- nodemodules:/app/node_modules
- .:/app
Expand Down
6 changes: 2 additions & 4 deletions local.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
version: "4"

services:
documentcloud_frontend:
image: node:20
image: node:22
volumes:
- nodemodules:/app/node_modules
- .:/app
Expand All @@ -21,7 +19,7 @@ services:
NODE_ENV: development

preview:
image: node:20
image: node:22
volumes:
- nodemodules:/app/node_modules
- .:/app
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"storybook": "storybook dev -p 6006",
"knip": "knip"
},
"engine": 20,
"engine": 22,
"browserslist": "> 0.25%, not dead",
"msw": {
"workerDirectory": "./public"
Expand Down