Skip to content

chore(deps): update actions/setup-node action to v6 #178

chore(deps): update actions/setup-node action to v6

chore(deps): update actions/setup-node action to v6 #178

Workflow file for this run

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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
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@34e114876b0b11c390a56381ad16ebd13914f8d5 # 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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: 🚀 Deploy
run: GIT_BRANCH=${GITHUB_REF:11} make deploy
if: github.ref == 'refs/heads/master'
shell: bash