nitro-renderer/.gitlab-ci.yml

26 lines
421 B
YAML
Raw Normal View History

2022-03-21 02:06:59 -04:00
image: node:16.3
2021-03-16 22:02:09 -04:00
stages:
2022-03-21 02:06:59 -04:00
- test
- compile
2021-03-16 22:02:09 -04:00
ESLinter:
stage: test
script:
- npm i
- node ./node_modules/eslint/bin/eslint.js src/
cache:
key: ${CI_COMMIT_BRANCH}
paths:
- node_modules
2021-07-27 16:08:18 -05:00
Compile:
2022-03-21 02:06:59 -04:00
stage: compile
script:
- yarn install
2022-03-21 02:14:53 -04:00
- yarn compile
2022-03-21 02:06:59 -04:00
cache:
key: ${CI_COMMIT_BRANCH}
paths:
- node_modules