Some checks failed
CI-integ-test-full / caching-integ-tests (push) Failing after 32s
CI-integ-test-full / other-integ-tests (push) Failing after 29m15s
Update Wrapper checksums file / Update checksums (push) Failing after 1m29s
CI-codeql / Analyze (javascript-typescript) (push) Failing after 1m30s
36 lines
758 B
YAML
36 lines
758 B
YAML
name: CI-integ-test-full
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- 'dist/**'
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
concurrency:
|
|
group: integ-test
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
caching-integ-tests:
|
|
uses: ./.github/workflows/suite-integ-test-caching.yml
|
|
concurrency:
|
|
group: CI-integ-test-full
|
|
cancel-in-progress: false
|
|
with:
|
|
runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
|
skip-dist: true
|
|
secrets: inherit
|
|
|
|
other-integ-tests:
|
|
uses: ./.github/workflows/suite-integ-test-other.yml
|
|
concurrency:
|
|
group: CI-integ-test-full
|
|
cancel-in-progress: false
|
|
with:
|
|
runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
|
skip-dist: true
|
|
secrets: inherit
|