Skip to content

Commit df594c9

Browse files
authored
Merge pull request anse-app#448 from zhullyb/for-merge
fix for github action
2 parents 75b6d5b + 7d67d9b commit df594c9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/lint.yml

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717

1818
- name: Install pnpm
1919
uses: pnpm/action-setup@v2
20+
with:
21+
version: latest
2022

2123
- name: Set node
2224
uses: actions/setup-node@v3

Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
FROM node:alpine as builder
22
WORKDIR /usr/src
33
RUN npm install -g pnpm
4-
COPY package.json pnpm-lock.yaml ./
5-
RUN pnpm install
64
COPY . .
5+
RUN pnpm install
76
RUN pnpm run build
87

98
FROM node:alpine

0 commit comments

Comments
 (0)