Skip to content

Commit 7acaa38

Browse files
authored
chore: bump deps (#123)
1 parent 5ec346a commit 7acaa38

File tree

11 files changed

+523
-467
lines changed

11 files changed

+523
-467
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
platform: [ubuntu-22.04]
17-
node: ['20']
16+
platform: [ubuntu-24.04]
17+
node: ['22']
1818

1919
runs-on: ${{ matrix.platform }}
2020

@@ -46,13 +46,13 @@ jobs:
4646
run: |
4747
npm ci
4848
49-
- name: Prettier checks
49+
- name: Formatting checks
5050
run: |
51-
npm run prettier:check
51+
npm run format:check
5252
53-
- name: ESLint checks
53+
- name: Lint
5454
run: |
55-
npm run eslint:check
55+
npm run lint
5656
5757
- name: Builds successfully
5858
run: |

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
strategy:
1313
matrix:
1414
node:
15-
- '20'
15+
- '22'
1616

17-
runs-on: ubuntu-22.04
17+
runs-on: ubuntu-24.04
1818

1919
outputs:
2020
new-release-published: ${{ steps.semantic-release.outputs.new_release_published }}
@@ -48,7 +48,7 @@ jobs:
4848

4949
if: needs.release.outputs.new-release-published == 'true'
5050

51-
runs-on: ubuntu-22.04
51+
runs-on: ubuntu-24.04
5252

5353
steps:
5454
- name: Set up QEMU

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v20
1+
v22

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build step
2-
FROM node:20-alpine
2+
FROM node:22-alpine
33
WORKDIR /app
44
COPY package.json package-lock.json ./
55
RUN npm ci
@@ -8,7 +8,7 @@ RUN npm run build
88
RUN npm prune --production
99

1010
## Build step complete, copy to working image
11-
FROM node:20-alpine
11+
FROM node:22-alpine
1212
WORKDIR /app
1313
ENV NODE_ENV=production
1414
COPY --from=0 /app .

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2019 Supabase
189+
Copyright 2025 Supabase
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

docker/compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3.8'
2-
31
services:
42
db:
53
container_name: stripe-db

fly.toml

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)