chore(deps): lock file maintenance #168
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: Test & Upload to PactFlow | |
| on: | |
| push: | |
| workflow_dispatch: | |
| inputs: | |
| PACT_CLI_DOCKER_VERSION: | |
| description: | |
| required: true | |
| default: latest | |
| env: | |
| PACT_BROKER_BASE_URL: https://testdemo.pactflow.io | |
| PACT_BROKER_TOKEN: ${{ secrets.PACTFLOW_TOKEN_FOR_CI_CD_WORKSHOP }} | |
| PACT_BROKER_PUBLISH_VERIFICATION_RESULTS: true | |
| GIT_COMMIT: ${{ github.sha }} | |
| GITHUB_REF: ${{ github.ref }} | |
| PACT_CLI_DOCKER_VERSION: ${{ github.event.inputs.PACT_CLI_DOCKER_VERSION }} | |
| jobs: | |
| set-pact-cli-docker-version: | |
| name: 🐳 set-pact-cli-docker-version | |
| runs-on: ubuntu-latest | |
| steps: | |
| - if: ${{ env.PACT_CLI_DOCKER_VERSION == '' }} | |
| name: 🐳 set PACT_CLI_DOCKER_VERSION to latest, if version not present | |
| run: | | |
| PACT_CLI_DOCKER_VERSION="latest" | |
| echo "PACT_CLI_DOCKER_VERSION=${PACT_CLI_DOCKER_VERSION}" >> $GITHUB_ENV | |
| - name: 🐳 PACT_CLI_DOCKER_VERSION is ${{ env.PACT_CLI_DOCKER_VERSION }} | |
| run: echo $PACT_CLI_DOCKER_VERSION | |
| outputs: | |
| PACT_CLI_DOCKER_VERSION: ${{ env.PACT_CLI_DOCKER_VERSION }} | |
| test: | |
| needs: [set-pact-cli-docker-version] | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ['ubuntu-latest'] | |
| node-version: [20.x] | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| PACT_CLI_DOCKER_VERSION: ${{ needs.set-pact-cli-docker-version.outputs.PACT_CLI_DOCKER_VERSION}} | |
| steps: | |
| - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4 | |
| - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install | |
| run: npm i | |
| shell: bash | |
| - name: Test | |
| run: GIT_BRANCH=${GITHUB_REF:11} make ci | |
| shell: bash | |
| # Runs on branches as well, so we know the status of our PRs | |
| can-i-deploy: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ['ubuntu-latest'] | |
| runs-on: ${{ matrix.os }} | |
| needs: [test, set-pact-cli-docker-version] | |
| env: | |
| PACT_CLI_DOCKER_VERSION: ${{ needs.set-pact-cli-docker-version.outputs.PACT_CLI_DOCKER_VERSION}} | |
| steps: | |
| - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4 | |
| - name: 🔎 Can I deploy? | |
| run: GIT_BRANCH=${GITHUB_REF:11} make can_i_deploy | |
| shell: bash | |
| # Only deploy from master | |
| deploy: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ['ubuntu-latest'] | |
| runs-on: ${{ matrix.os }} | |
| needs: [can-i-deploy, set-pact-cli-docker-version] | |
| env: | |
| PACT_CLI_DOCKER_VERSION: ${{ needs.set-pact-cli-docker-version.outputs.PACT_CLI_DOCKER_VERSION}} | |
| steps: | |
| - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4 | |
| - name: 🚀 Deploy | |
| run: GIT_BRANCH=${GITHUB_REF:11} make deploy | |
| if: github.ref == 'refs/heads/master' | |
| shell: bash |