-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e9e4ea
commit 12b3ec4
Showing
2 changed files
with
2 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,12 +22,6 @@ jobs: | |
network=host | ||
buildkitd-flags: --debug | ||
|
||
- name: Install Yarn 4.5.3 | ||
run: | | ||
corepack enable | ||
corepack prepare [email protected] --activate | ||
yarn --version | ||
- name: Generate cache key | ||
id: cache-key | ||
run: echo "key=${{ runner.os }}-buildx-${{ hashFiles('**/yarn.lock') }}" >> $GITHUB_OUTPUT | ||
|
@@ -47,12 +41,6 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Yarn 4.5.3 | ||
run: | | ||
corepack enable | ||
corepack prepare [email protected] --activate | ||
yarn --version | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ RUN apt-get update && \ | |
rm -rf /var/lib/apt/lists/* | ||
|
||
# Install dependencies | ||
RUN npm install -g [email protected] | ||
RUN yarn --version | ||
COPY package.json yarn.lock ./ | ||
RUN yarn install --frozen-lockfile | ||
|
||
|