Haha!
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
2023-05-24 12:35:37 -04:00
parent 35b89062e4
commit 8e5092b943
6 changed files with 489 additions and 444 deletions

View File

@@ -7,9 +7,15 @@ workspace:
steps:
- name: yarn install
image: node:latest
image: node:20-bullseye-slim
environment:
YARN_VERSION: 3.5.0
commands:
- yarn set version stable
- yarn install
volumes:
- name: yarnrc
path: /drone/auth/.yarnrc.yml
- name: Code Style Checks
image: node:latest
commands:
@@ -40,7 +46,7 @@ steps:
- name: Build
image: node:latest
commands:
- yarn build
- yarn build:production
- name: Send Build Status Notifications
image: plugins/webhook
settings:
@@ -57,6 +63,11 @@ steps:
- success
- failure
volumes:
- name: yarnrc
host:
path: /volume1/docker/.yarnrc.yml
trigger:
branch:
- main
@@ -74,18 +85,25 @@ workspace:
steps:
- name: Build
image: node:latest
image: node:20-bullseye-slim
environment:
YARN_VERSION: 3.5.0
commands:
- yarn set version stable
- yarn install
- yarn build
- yarn build:production
volumes:
- name: yarnrc
path: /drone/auth/.yarnrc.yml
- name: Publish NPM
image: node:20-alpine
failure: ignore
image: node:20-bullseye-slim
commands:
- yarn publish -t ${DRONE_TAG}
- yarn npm publish
volumes:
- name: npmrc
path: /drone/auth/.npmrc
- name: yarnrc
path: /drone/auth/.yarnrc.yml
- name: Report NPM Publish Status
image: plugins/webhook
settings:
@@ -106,6 +124,9 @@ volumes:
- name: npmrc
host:
path: /volume1/docker/beethoven/labs-auth/.npmrc
- name: yarnrc
host:
path: /volume1/docker/.yarnrc.yml
depends_on:
- Test Pipeline