mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
Add pnpm to runners (#1683)
Found another place where pnpm needs to be added.
This commit is contained in:
6
.github/workflows/elixir.yml
vendored
6
.github/workflows/elixir.yml
vendored
@@ -317,6 +317,12 @@ jobs:
|
||||
with:
|
||||
otp-version: "25"
|
||||
elixir-version: "1.14"
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
- uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: 8
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/cache@v3
|
||||
name: Elixir Deps Cache
|
||||
|
||||
@@ -8,7 +8,10 @@ ARG RUNNER_IMAGE="alpine:${ALPINE_VERSION}"
|
||||
FROM ${BUILDER_IMAGE} as builder
|
||||
|
||||
# install build dependencies
|
||||
RUN apk add nodejs pnpm build-base git python3
|
||||
RUN apk add nodejs npm build-base git python3
|
||||
|
||||
# Add pnpm
|
||||
RUN npm i -g pnpm
|
||||
|
||||
# prepare build dir
|
||||
WORKDIR /app
|
||||
|
||||
Reference in New Issue
Block a user