Merge pull request #898 from posit-dev/dotnomad/card-menu #380
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: Main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
# Unit Tests | |
agent: | |
uses: ./.github/workflows/agent.yaml | |
web: | |
uses: ./.github/workflows/web.yaml | |
jupyterlab: | |
uses: ./.github/workflows/jupyterlab.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 | |
# Integration Tests | |
bats: | |
needs: build | |
uses: ./.github/workflows/bats.yaml | |
cypress: | |
needs: build | |
uses: ./.github/workflows/ui.yaml |