Skip to content

Commit

Permalink
👌 re-add unit tests jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-lebeau committed Feb 13, 2025
1 parent 1d18508 commit a401af3
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,21 @@ compatibility:
- yarn test:compat:tsc
- yarn test:compat:ssr

unit:
extends:
- .base-configuration
- .test-allowed-branches
interruptible: true
artifacts:
reports:
junit: test-report/unit/*.xml
script:
- yarn
- yarn test:unit
- ./scripts/test/codecov.sh
after_script:
- node ./scripts/test/export-test-result.js unit

e2e:
extends:
- .base-configuration
Expand Down Expand Up @@ -243,6 +258,23 @@ check-schemas:
- yarn
- node scripts/check-schemas.js

unit-bs:
stage: browserstack
needs: ['unit']
extends:
- .base-configuration
- .bs-allowed-branches
interruptible: true
resource_group: browserstack
artifacts:
reports:
junit: test-report/unit-bs/*.xml
script:
- yarn
- ./scripts/test/ci-bs.sh test:unit
after_script:
- node ./scripts/test/export-test-result.js unit-bs

e2e-bs:
stage: browserstack
needs: ['e2e']
Expand Down

0 comments on commit a401af3

Please sign in to comment.