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
"on": | |
push: | |
branches: | |
- dgtown/canary | |
name: Run integration tests | |
jobs: | |
js-test-app-buildpack: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Buildpack test | |
uses: ./.github/actions/tests | |
with: | |
host: https://dashboard.internal-tools.porter.run | |
project: "301" | |
cluster: "142" | |
token: ${{ secrets.APP_INTEGRATION_PROJECT_TOKEN }} | |
repository: porter-dev/js-test-app | |
ref: refs/heads/master | |
yaml_file: ./integration_tests/buildpack.yaml | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
js-test-app-dockerfile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Dockerfile test | |
uses: ./.github/actions/tests | |
with: | |
host: https://dashboard.internal-tools.porter.run | |
project: "301" | |
cluster: "142" | |
token: ${{ secrets.APP_INTEGRATION_PROJECT_TOKEN }} | |
repository: porter-dev/js-test-app | |
ref: refs/heads/master | |
yaml_file: ./integration_tests/dockerfile.yaml | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
nginx-latest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Docker image test | |
uses: ./.github/actions/tests | |
with: | |
host: https://dashboard.internal-tools.porter.run | |
project: "301" | |
cluster: "142" | |
token: ${{ secrets.APP_INTEGRATION_PROJECT_TOKEN }} | |
repository: porter-dev/porter | |
ref: refs/heads/master | |
yaml_file: ./integration_tests/nginx.yaml |