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

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

Fix frontend appearance

  • Property mode set to 100644
File size: 318 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:node8:
16 image: node:8
17 <<: *npm_test
18
19test:node10:
20 image: node:10
21 <<: *npm_test
22
23test:node12:
24 image: node:12
25 <<: *npm_test
Note: See TracBrowser for help on using the repository browser.