Skip to content
Snippets Groups Projects
.gitlab-ci.yml 163 B
image: node:latest

stages:
  - build

build:
  stage: build
  script:
    - npm install --force --global yarn
    - yarn install
    - yarn test
    - yarn build