fix: download timeout and resume support for marketplace installs #181
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: {} | |
| jobs: | |
| skit: | |
| name: Skit | |
| uses: ./.github/workflows/skit.yml | |
| ui: | |
| name: UI | |
| uses: ./.github/workflows/ui.yml | |
| plugins: | |
| name: Plugins | |
| uses: ./.github/workflows/plugins.yml | |
| e2e: | |
| name: E2E | |
| uses: ./.github/workflows/e2e.yml | |
| all-checks: | |
| name: All Checks Passed | |
| runs-on: ubuntu-22.04 | |
| needs: [skit, ui, plugins, e2e] | |
| steps: | |
| - name: All checks passed | |
| run: echo "All CI checks passed successfully!" |