We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b94c36d commit db3e428Copy full SHA for db3e428
.github/workflows/lint.yml
@@ -23,10 +23,10 @@ jobs:
23
node-version: 20
24
25
- name: Install dependencies
26
- run: npm ci
+ run: yarn ci
27
28
- name: ESLint
29
- run: npm run lint
+ run: yarn run lint
30
31
- name: Types
32
- run: npm run typecheck
+ run: yarn run typecheck
Dockerfile
@@ -5,11 +5,11 @@ WORKDIR /app
5
COPY package.json /app
6
COPY package-lock.json /app
7
8
-RUN npm install
+RUN yarn install
9
10
COPY . /app
11
12
-RUN npm run build
+RUN yarn run build
13
14
# There are build issues on the Node 20 version. Jump to 20 when the bug will be fixed.
15
# https://github.com/nodejs/docker-node/issues/1946
0 commit comments