Merge branch 'main' into j285he-one-book
This commit is contained in:
commit
0028372789
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: node16
|
||||
|
||||
steps:
|
||||
- name: install-deps
|
||||
image: node:16
|
||||
commands:
|
||||
- npm install
|
||||
|
||||
- name: lint
|
||||
image: node:16
|
||||
depends_on:
|
||||
- install-deps
|
||||
commands:
|
||||
- npm run lint
|
||||
|
||||
- name: build
|
||||
image: node:16
|
||||
depends_on:
|
||||
- install-deps
|
||||
commands:
|
||||
- npm run build
|
Loading…
Reference in New Issue