source: frontend/node_modules/hoopy/.gitlab-ci.yml

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 316 bytes
Line 
1cache:
2 key: "$CI_JOB_NAME"
3 untracked: true
4 paths:
5 - node_modules/
6
7before_script:
8 - npm install
9
10.test_template: &npm_test
11 script:
12 - npm run lint
13 - npm test
14
15test:node6:
16 image: node:6
17 <<: *npm_test
18
19test:node8:
20 image: node:8
21 <<: *npm_test
22
23test:node10:
24 image: node:10
25 <<: *npm_test
Note: See TracBrowser for help on using the repository browser.