You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ci/woodpecker/push/woodpecker Pipeline was successful
Details
Current ULR is private one Reviewed-on: #5 Reviewed-by: qwerty287 <qwerty287@noreply.codeberg.org> Co-authored-by: Lauris BH <lafriks@noreply.codeberg.org> Co-committed-by: Lauris BH <lafriks@noreply.codeberg.org> |
7 months ago | |
---|---|---|
.gitignore | 7 months ago | |
.woodpecker.yml | 7 months ago | |
Dockerfile | 7 months ago | |
README.md | 7 months ago | |
docs.md | 7 months ago | |
run.sh | 7 months ago |
README.md
Woodpecker Node PM
Woodpecker plugin to execute NPM, PNPM or Yarn scripts.
Features
- automatically find used package manager (based on lockfile)
- install if
node_modules
don't exist - run multiple tasks
Usage
Example pipeline running one script:
pipeline:
build:
image: codeberg.org/woodpecker-plugins/node-pm
settings:
run: build # script name
with: pnpm # if `with` is set, enforce to use this package manager
Example pipeline running multiple scripts (prepare
and build
):
pipeline:
build:
image: codeberg.org/woodpecker-plugins/node-pm
settings:
run:
- prepare
- build