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/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ on:
- cron: '30 4 * * *' # Daily at 04:30 UTC

env:
NODE_VERSION: '20'
NODE_VERSION: '22'
PYTHON_VERSION: '3.11'

permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '18'
node-version: '22'
cache: 'npm'

- name: Setup Python
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '18'
node-version: '22'
cache: 'npm'

- name: Setup Python
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '18'
node-version: '22'
cache: 'npm'

- name: Install dependencies
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '18'
node-version: '22'
cache: 'npm'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: 🔧 Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 # zizmor: ignore[cache-poisoning] no cache is configured here
with:
node-version: '20'
node-version: '22'

- name: 🐍 Setup Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
if: env.IS_MANUAL == 'true' || steps.check_pr.outputs.needs_tag == 'true'
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 # zizmor: ignore[cache-poisoning] no cache is configured here
with:
node-version: '20'
node-version: '22'

- name: 👤 Configure git identity and remote
if: env.IS_MANUAL == 'true' || steps.check_pr.outputs.needs_tag == 'true'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ permissions:
actions: read

env:
NODE_VERSION: '18'
NODE_VERSION: '22'
PYTHON_VERSION: '3.9'

jobs:
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '18'
node-version: '22'
cache: 'npm'
cache-dependency-path: package-lock.json

Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '18'
node-version: '22'
cache: 'npm'

- name: Setup Python
Expand Down Expand Up @@ -321,7 +321,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '18'
node-version: '22'
cache: 'npm'

- name: Download all test status artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/transform-results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
actions: read

env:
NODE_VERSION: '20'
NODE_VERSION: '22'
PYTHON_VERSION: '3.11'

jobs:
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage - Install dependencies and build project
FROM node:20-bullseye-slim AS builder
FROM node:22-bullseye-slim AS builder

# Install build dependencies
RUN apt-get update && apt-get install -y \
Expand Down Expand Up @@ -30,7 +30,7 @@ COPY . .
RUN npm run setup && npm run build

# Production stage - Final runtime image
FROM node:20-bullseye-slim AS production
FROM node:22-bullseye-slim AS production

# Install runtime dependencies including Chrome
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
]
},
"requirements": {
"nodeVersion": 16,
"nodeVersion": 22,
"tools": {
"node": "node --version",
"playwright": "npx playwright --version",
Expand Down
Loading