Brain
99441de1ad
All checks were successful
continuous-integration/drone/pr Build is passing
See https://github.com/webpack/webpack/issues/14532
50 lines
704 B
YAML
50 lines
704 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: build
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
event:
|
|
- push
|
|
- pull_request
|
|
|
|
steps:
|
|
- name: lint
|
|
image: node:18
|
|
commands:
|
|
- npm install
|
|
- npm run lint
|
|
- name: build
|
|
image: node:18
|
|
environment:
|
|
NODE_OPTIONS: '--openssl-legacy-provider'
|
|
commands:
|
|
- npm run build
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: deploy
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: build
|
|
image: node:18
|
|
environment:
|
|
NODE_OPTIONS: '--openssl-legacy-provider'
|
|
commands:
|
|
- npm install
|
|
- npm run build
|
|
---
|
|
kind: signature
|
|
hmac: 1379c171ca346c7f99acfcf60800ce1776d2341b34a1023c5862b79b13606703
|
|
|
|
...
|