]>
git.r.bdr.sh - rbdr/forum/blame - .gitlab-ci.yml
Commit | Line | Data |
535cbcc7 RBR |
1 | image: node:15 |
2 | |
3 | stages: |
4 | - lint |
5 | - test |
6 | |
7 | before_script: |
8 | - npm install |
9 | |
10 | lint: |
11 | stage: lint |
12 | script: |
13 | - npm run lint |
14 | test: |
15 | stage: test |
16 | script: |
17 | - npm run test |