Skip to content

chore(deps): lock file maintenance #969

chore(deps): lock file maintenance

chore(deps): lock file maintenance #969

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
env:
PACT_BROKER_BASE_URL: https://test.pactflow.io
PACT_BROKER_TOKEN: ${{ secrets.PACTFLOW_TOKEN_FOR_CI_CD_WORKSHOP }}
VITE_API_BASE_URL: http://127.0.0.1:1234
GIT_COMMIT: ${{ github.sha }}
GIT_REF: ${{ github.ref }}
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
pact_provider:
[
# "pactflow-example-bi-directional-provider-dredd",
# "pactflow-example-bi-directional-provider-restassured",
# "pactflow-example-bi-directional-provider-postman",
"pactflow-example-provider",
# 'pactflow-example-bi-directional-provider-dotnet'
]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: "24"
- name: Install for ${{ matrix.pact_provider }}
run: npm ci
- name: Type check
run: npm run type-check
- name: Lint and format check
run: npm run check
- name: Build
run: npm run build
- name: Test for ${{ matrix.pact_provider }}
run: make test
env:
PACT_PROVIDER: ${{ matrix.pact_provider }}
- name: Publish pacts
run: GIT_BRANCH=${GIT_REF:11} make publish_pacts
env:
PACT_PROVIDER: ${{ matrix.pact_provider }}
# 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- run: docker pull pactfoundation/pact-cli:latest
- name: Can I deploy?
run: GIT_BRANCH=${GIT_REF:11} make can_i_deploy
# Only deploy from master
deploy:
runs-on: ubuntu-latest
needs: can-i-deploy
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- run: docker pull pactfoundation/pact-cli:latest
- name: Deploy
run: GIT_BRANCH=${GIT_REF:11} make deploy
if: github.ref == 'refs/heads/master'
complete:
name: Test completion check
if: always()
permissions:
contents: none
runs-on: ubuntu-latest
needs: [test, can-i-deploy, deploy]
steps:
- name: Failed
run: exit 1
if: |
contains(needs.*.result, 'failure')
|| contains(needs.*.result, 'cancelled')
|| contains(needs.*.result, 'skipped')