16 lines
248 B
YAML
16 lines
248 B
YAML
---
|
|
kind: pipeline
|
|
name: Testing
|
|
|
|
steps:
|
|
- name: spellcheck
|
|
image: node:18.12.1
|
|
commands:
|
|
- npm install
|
|
- npm run check:spell
|
|
- name: lint
|
|
image: node:18.12.1
|
|
commands:
|
|
- npm install
|
|
- npm run check:code
|