.gitlab-ci.yml 494 Bytes
Newer Older
canterafonsj's avatar
canterafonsj committed
# This file is a template, and might need editing before it works on your project.
# Official framework image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/node/tags/
image: node::13.7-alpine
canterafonsj's avatar
canterafonsj committed

# This folder is cached between builds
# http://docs.rep.com/ce/ci/yaml/README.html#cache
canterafonsj's avatar
canterafonsj committed
cache:
  paths:
  - node_modules/

before_script:
  - yarn

stages:
  - test

test:
  stage: test
canterafonsj's avatar
canterafonsj committed
  script:
   - echo "Running tests..."   
   - yarn test
  allow_failure: true
canterafonsj's avatar
canterafonsj committed