mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-29 07:41:13 +00:00
Try 3
This commit is contained in:
parent
fa97ff4cc4
commit
2091223275
1 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,6 @@
|
|||
variables:
|
||||
- &install_pnpm: 'wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh -'
|
||||
|
||||
steps:
|
||||
fetch_git_submodules:
|
||||
image: node:20-alpine
|
||||
|
@ -5,23 +8,24 @@ steps:
|
|||
- apk add git
|
||||
- git submodule init
|
||||
- git submodule update --recursive --remote
|
||||
# Install pnpm
|
||||
- wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh -
|
||||
- source /root/.shrc
|
||||
#- source /root/.shrc
|
||||
|
||||
install:
|
||||
image: node:20-alpine
|
||||
commands:
|
||||
- *install_pnpm
|
||||
- pnpm i
|
||||
|
||||
lint:
|
||||
image: node:20-alpine
|
||||
commands:
|
||||
- *install_pnpm
|
||||
- pnpm lint
|
||||
|
||||
build_dev:
|
||||
image: node:20-alpine
|
||||
commands:
|
||||
- *install_pnpm
|
||||
- pnpm build:dev
|
||||
|
||||
publish_release_docker:
|
||||
|
|
Loading…
Reference in a new issue