18 lines
264 B
YAML
18 lines
264 B
YAML
when:
|
|
- path:
|
|
include: [
|
|
'src/**/*',
|
|
'test/**/*',
|
|
'index.ts'
|
|
]
|
|
|
|
steps:
|
|
test:
|
|
image: node
|
|
when:
|
|
- event: [pull_request, push, manual]
|
|
commands:
|
|
- npm install
|
|
- npm run check
|
|
- npm run test
|