Skip to content
Snippets Groups Projects
.gitlab-ci.yml 2.60 KiB
# workflow
stages:
 - build
 - test
 - integration
 - acceptance
 - release
 - deploy

# default image for jobs
default:
  image: node:14

# cache modules between jobs
cache:
  key: ${CI_COMMIT_REF_SLUG}
  paths:
    - .npm/

## BUILD ##

build:
  stage: build
  before_script:
    - npm ci --cache .npm --prefer-offline --only=production
  script:
    - cp config.sample.json config.json
    - npm run build
  artifacts:
    when: on_success
    expire_in: 1 day
    paths:
      - dist/
  except:
    - tags
    - feature/ansible
  tags:
    - test

## TESTING ##

test:e2e:
  stage: test
  image: cypress/included:5.6.0
  services:
    - name: ${CI_REGISTRY_IMAGE}/djangoldp:latest
  before_script:
    # install missing dependencies
    - npm install -g sirv-cli
    - npm install cypress-localstorage-commands
     # making sure the process is orphan
    - sirv dist --port 3000 > /dev/null 2>&1 &
  script:
    - cypress run -e CYPRESS_baseUrl=http://localhost:3000
  except:
    - tags
    - feature/ansible
  tags:
    - test

## VALIDATION ##

include:
  project: infra/gitlab
  ref: master
  file: templates/deploy.ci.yml

test1:
  extends: .ansible
  stage: integration