Skip to content

Commit c36260c

Browse files
build(deps): bump node from 25.1-alpine3.21 to 25.2-alpine3.21 (#190)
* build(deps): bump node from 25.1-alpine3.21 to 25.2-alpine3.21 Bumps node from 25.1-alpine3.21 to 25.2-alpine3.21. --- updated-dependencies: - dependency-name: node dependency-version: 25.2-alpine3.21 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * [fix] Include node localstorage-file option Signed-off-by: Léon Tiekötter <[email protected]> * [fix] Disable webstorage Signed-off-by: Léon Tiekötter <[email protected]> * Remove NODE_OPTIONS from test script Signed-off-by: Léon Tiekötter <[email protected]> * Remove NODE_OPTIONS from test step in CI workflow Removed NODE_OPTIONS environment variable from test step. Signed-off-by: Léon Tiekötter <[email protected]> * Update test script to use local storage file Signed-off-by: Léon Tiekötter <[email protected]> * Simplify test script in package.json Signed-off-by: Léon Tiekötter <[email protected]> * Remove Node.js version 20.x from CI workflow Signed-off-by: Léon Tiekötter <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Léon Tiekötter <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Léon Tiekötter <[email protected]>
1 parent 25ed2dc commit c36260c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [25.x, 24.x, 22.x, 20.x]
18+
node-version: [25.x, 24.x, 22.x]
1919

2020
steps:
2121
- name: Checkout code
@@ -31,8 +31,6 @@ jobs:
3131
run: npm ci
3232

3333
- name: Run tests
34-
env:
35-
NODE_OPTIONS: '--no-experimental-webstorage'
3634
run: npm test
3735

3836
- name: Security audit

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
ARG UID=200003
77
ARG GID=200003
88

9-
FROM node:25.1-alpine3.21 AS build
9+
FROM node:25.2-alpine3.21 AS build
1010

1111
ARG UID=200003
1212
ARG GID=200003

0 commit comments

Comments
 (0)