All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: Eric NGUYEN <enguyen@techform.fr> Reviewed-on: https://git.siklos-chaneru.duckdns.org/Siklos/svg-layout-designer-react/pulls/2
21 lines
No EOL
229 B
YAML
21 lines
No EOL
229 B
YAML
---
|
|
kind: pipeline
|
|
name: node-16-lts
|
|
|
|
steps:
|
|
- name: test
|
|
image: node:16
|
|
commands:
|
|
- npm install
|
|
- npm test
|
|
|
|
---
|
|
kind: pipeline
|
|
name: node-latest
|
|
|
|
steps:
|
|
- name: test
|
|
image: node
|
|
commands:
|
|
- npm install
|
|
- npm test |