ci(testing): Disable frontend testing
This commit is contained in:
parent
9a56350767
commit
f76bb01aac
|
@ -219,35 +219,37 @@ test_api:
|
|||
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||
when: always
|
||||
|
||||
test_front:
|
||||
interruptible: true
|
||||
stage: test
|
||||
image: node:16-alpine
|
||||
before_script:
|
||||
- cd front
|
||||
- apk add --no-cache jq bash coreutils python3
|
||||
script:
|
||||
- yarn install --check-files
|
||||
- yarn test:unit
|
||||
cache:
|
||||
key: "funkwhale__front_dependencies"
|
||||
paths:
|
||||
- front/node_modules
|
||||
- front/yarn.lock
|
||||
artifacts:
|
||||
name: "front_${CI_COMMIT_REF_NAME}"
|
||||
paths:
|
||||
- front/dist/
|
||||
reports:
|
||||
junit: front/coverage/cobertura-coverage.xml
|
||||
tags:
|
||||
- docker
|
||||
rules:
|
||||
- if: $CI_PIPELINE_SOURCE == "merge_request_event" || $CI_PIPELINE_SOURCE == "push"
|
||||
changes:
|
||||
- front/**/*
|
||||
- if: $CI_COMMIT_BRANCH == "develop" || $CI_COMMIT_BRANCH == "stable"
|
||||
when: always
|
||||
# Those tests are disabled for now since no vitest dom emulation is providing
|
||||
# AudioContext, which is required for our HTML audio player
|
||||
#test_front:
|
||||
# interruptible: true
|
||||
# stage: test
|
||||
# image: node:16-alpine
|
||||
# before_script:
|
||||
# - cd front
|
||||
# - apk add --no-cache jq bash coreutils python3
|
||||
# script:
|
||||
# - yarn install --check-files
|
||||
# - yarn test:unit
|
||||
# cache:
|
||||
# key: "funkwhale__front_dependencies"
|
||||
# paths:
|
||||
# - front/node_modules
|
||||
# - front/yarn.lock
|
||||
# artifacts:
|
||||
# name: "front_${CI_COMMIT_REF_NAME}"
|
||||
# paths:
|
||||
# - front/dist/
|
||||
# reports:
|
||||
# junit: front/coverage/cobertura-coverage.xml
|
||||
# tags:
|
||||
# - docker
|
||||
# rules:
|
||||
# - if: $CI_PIPELINE_SOURCE == "merge_request_event" || $CI_PIPELINE_SOURCE == "push"
|
||||
# changes:
|
||||
# - front/**/*
|
||||
# - if: $CI_COMMIT_BRANCH == "develop" || $CI_COMMIT_BRANCH == "stable"
|
||||
# when: always
|
||||
|
||||
build_docs:
|
||||
stage: build
|
||||
|
|
Loading…
Reference in New Issue