2024-08-03 18:33:54 +00:00
|
|
|
name: CI-integ-test-full
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- 'dist/**'
|
|
|
|
|
|
|
|
concurrency:
|
2024-08-12 16:33:22 +00:00
|
|
|
group: integ-test
|
2024-08-03 18:33:54 +00:00
|
|
|
cancel-in-progress: false
|
|
|
|
|
2024-11-14 02:01:45 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2024-08-03 18:33:54 +00:00
|
|
|
jobs:
|
|
|
|
caching-integ-tests:
|
|
|
|
uses: ./.github/workflows/suite-integ-test-caching.yml
|
2024-08-03 21:54:44 +00:00
|
|
|
concurrency:
|
|
|
|
group: CI-integ-test-full
|
|
|
|
cancel-in-progress: false
|
2024-08-03 18:33:54 +00:00
|
|
|
with:
|
|
|
|
runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
|
|
|
skip-dist: true
|
|
|
|
secrets: inherit
|
|
|
|
|
|
|
|
other-integ-tests:
|
2024-11-14 02:01:45 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2024-08-03 18:33:54 +00:00
|
|
|
uses: ./.github/workflows/suite-integ-test-other.yml
|
2024-08-03 21:54:44 +00:00
|
|
|
concurrency:
|
|
|
|
group: CI-integ-test-full
|
|
|
|
cancel-in-progress: false
|
2024-08-03 18:33:54 +00:00
|
|
|
with:
|
|
|
|
runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
|
|
|
skip-dist: true
|
|
|
|
secrets: inherit
|