Skip to content
Snippets Groups Projects
.gitlab-ci.yml 386 B
include:
  #  import infra template
  - project: "taki-infra/template-ci"
    ref: main
    file: "templates/frontend/.frontend-angular-npm-node-18.yml"

variables:
  TARGET_APP_NAME: allocine
  ARTIFACT_PATH: dist

build:
  artifacts:
    paths:
      - dist
  variables:
    SIZE: large

test:
  variables:
    SIZE: large
  script:
    - npm run test:ci || true
  allow_failure: true