image: node:latest

stages:
  - build

cache:
  paths:
  - node_modules/

build:
  stage: build
  script:
    - yarn install
    - yarn build
