Skip to content

Commit

Permalink
feat: 🎸 upgrade to sveltekit v2 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaskaransarkaria authored Jan 2, 2024
1 parent 6de2f62 commit 0bd9fd7
Show file tree
Hide file tree
Showing 20 changed files with 751 additions and 509 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 16.16
node-version: 18.19
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18.19
- name: Install dependencies
run: npm ci
- name: Build and Push
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 16.16
node-version: 18.19
- name: Install dependencies
run: npm ci
- name: Linting
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.16
v18.19
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16.16-alpine as builder
FROM node:18.19-alpine3.18 as builder

WORKDIR /usr/src/app

Expand All @@ -15,7 +15,7 @@ ENV PUBLIC_INTERNAL_K8S_URL="http://enki-server.enki.svc.cluster.local:8080"

RUN npm run build

FROM node:16.16-alpine
FROM node:18.19-alpine3.18

WORKDIR /usr/src/app

Expand Down
Loading

0 comments on commit 0bd9fd7

Please sign in to comment.