We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48e9574 commit ea1237bCopy full SHA for ea1237b
3 files changed
.github/workflows/deploy-pages.yml
@@ -21,16 +21,16 @@ jobs:
21
- name: Checkout
22
uses: actions/checkout@v4
23
24
- - name: Setup Node.js
25
- uses: actions/setup-node@v4
26
- with:
27
- node-version: '18'
28
-
29
- name: Setup pnpm
30
uses: pnpm/action-setup@v2
31
with:
32
version: latest
33
+ - name: Setup Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: '22'
+
34
- name: Install dependencies
35
run: pnpm install --no-frozen-lockfile
36
.nvmrc
@@ -0,0 +1 @@
1
+22
Dockerfile
@@ -1,5 +1,5 @@
# Multi-stage build
2
-FROM node:20-alpine AS builder
+FROM node:22-alpine AS builder
3
4
WORKDIR /app
5
0 commit comments