summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: a88959a980b820ecb7a1cda00bb4bd80c6ac5e93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
image: node:12

cache:
  paths:
    - node_modules/

build frontend:
  stage: build
  before script:
    - npm install
  script:
    - npm run start