There was an error while loading. Please reload this page.
1 parent 1e3e0aa commit 7cc2a1aCopy full SHA for 7cc2a1a
5 files changed
.github/workflows/lint.yml
@@ -22,14 +22,8 @@ jobs:
22
with:
23
node-version: 20
24
25
- - name: Pnpm
26
- uses: pnpm/action-setup@v2
27
- with:
28
- version: 8
29
- run_install: true
30
-
31
- name: ESLint
32
- run: pnpm run lint
+ run: npm run lint
33
34
- name: Types
35
- run: pnpm run typecheck
+ run: npm run typecheck
Dockerfile
@@ -1,18 +1,14 @@
1
FROM node:20-alpine as build
2
3
-RUN corepack enable
4
5
-RUN corepack prepare pnpm@latest --activate
6
7
WORKDIR /app
8
9
COPY package.json /app
10
11
-RUN pnpm install
+RUN npm install
12
13
COPY . /app
14
15
-RUN pnpm run build
+RUN npm run build
16
17
FROM gcr.io/distroless/nodejs20 as prod
18
0 commit comments