This repository has been archived on 2023-08-07. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
vylbot-core/.gitlab-ci.yml
2021-01-16 19:06:35 +00:00

17 lines
No EOL
174 B
YAML

image: node
stages:
- lint
- test
eslint:
stage: lint
script:
- npm install
- npm run lint
jest:
stage: test
script:
- npm install
- npm test