16 lines
No EOL
295 B
YAML
16 lines
No EOL
295 B
YAML
when:
|
|
branch: main
|
|
|
|
steps:
|
|
publish:
|
|
image: denoland/deno:1.39.2
|
|
commands:
|
|
- apt update
|
|
- apt install curl -y
|
|
- curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && apt-get install -y nodejs
|
|
- deno task publish
|
|
|
|
depends_on:
|
|
- lint
|
|
- build
|
|
- test |