mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-09-13 02:55:26 -05:00
Upgrade to Node.js 24
This commit is contained in:
2
.github/workflows/build-frontend.yml
vendored
2
.github/workflows/build-frontend.yml
vendored
@@ -13,7 +13,7 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [22.x]
|
||||
node-version: [24.x]
|
||||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||||
|
||||
steps:
|
||||
|
||||
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 22
|
||||
node-version: 24
|
||||
cache: 'npm'
|
||||
- run: npm ci
|
||||
- run: npm run lint -- --max-warnings 0
|
||||
|
||||
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [22.x]
|
||||
node-version: [24.x]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
|
||||
2
.github/workflows/update-query-hashes.yml
vendored
2
.github/workflows/update-query-hashes.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '22'
|
||||
node-version: '24'
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM node:22
|
||||
FROM node:24
|
||||
|
||||
# App setup
|
||||
WORKDIR /app
|
||||
|
||||
3
package-lock.json
generated
3
package-lock.json
generated
@@ -7,6 +7,9 @@
|
||||
"": {
|
||||
"name": "splatoon3.ink",
|
||||
"version": "0.0.0",
|
||||
"engines": {
|
||||
"node": "24.x"
|
||||
},
|
||||
"dependencies": {
|
||||
"@atproto/api": "^0.20.42",
|
||||
"@aws-sdk/client-s3": "^3.341.0",
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
{
|
||||
"name": "splatoon3.ink",
|
||||
"version": "0.0.0",
|
||||
"engines": {
|
||||
"node": "24.x"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
|
||||
Reference in New Issue
Block a user