Cypress e2e tooling - New cy.loadProjectConfig
to load project configurations in tests
#3805
Workflow file for this run
This file contains 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: Pull Request | |
on: | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
# Linting and formatting | |
lint: | |
uses: ./.github/workflows/lint.yaml | |
# Unit Tests | |
home-view-unit-tests: | |
uses: ./.github/workflows/home-view-unit-test.yaml | |
agent: | |
uses: ./.github/workflows/agent.yaml | |
vscode: | |
uses: ./.github/workflows/vscode.yaml | |
# Build | |
build: | |
uses: ./.github/workflows/build.yaml | |
package: | |
needs: build | |
uses: ./.github/workflows/package.yaml | |
archive: | |
needs: build | |
uses: ./.github/workflows/archive.yaml | |
upload: | |
needs: | |
- archive | |
- package | |
uses: ./.github/workflows/upload.yaml | |
secrets: inherit | |
# Integration Tests | |
# bats: | |
# needs: build | |
# secrets: inherit | |
# uses: ./.github/workflows/bats.yaml | |
vscode-ui: | |
needs: | |
- build | |
- package | |
secrets: inherit | |
uses: ./.github/workflows/vscode-ui.yaml |