Merge pull request #14 from pactflow/deps/node_20 #44
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: Test & Upload to Pactflow | |
on: | |
push: | |
workflow_dispatch: | |
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 | |
VERSION: ${{ github.sha }} | |
GITHUB_REF: ${{ github.ref }} | |
SLM_API_KEY: ${{ secrets.SLM_API_KEY }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: 📦️ Install | |
run: npm i | |
- name: set reports folder permissions for readyapi runner | |
run: chmod ugo+rwx project/reports | |
- name: 🧪 Test and upload to Pactflow 📈 | |
run: BRANCH=${GITHUB_REF:11} make test_and_publish | |
# Runs on branches as well, so we know the status of our PRs | |
can-i-deploy: | |
runs-on: ubuntu-latest | |
needs: [test] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 🛂 Can I deploy? | |
run: BRANCH=${GITHUB_REF:11} make can_i_deploy | |
# Only deploy from master/main | |
deploy: | |
runs-on: ubuntu-latest | |
needs: [can-i-deploy] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 🚀 Deploy | |
run: BRANCH=${GITHUB_REF:11} make deploy | |
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' |