Skip to content

chore(deps): update dependency vite to v8.1.4 #914

chore(deps): update dependency vite to v8.1.4

chore(deps): update dependency vite to v8.1.4 #914

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
env:
PACT_BROKER_BASE_URL: ${{ vars.PACT_BROKER_BASE_URL }}
PACT_PROVIDER: pactflow-example-provider
PACT_BROKER_TOKEN: ${{ secrets.PACTFLOW_TOKEN_FOR_CI_CD_WORKSHOP }}
VITE_API_BASE_URL: http://localhost:3001
GIT_COMMIT: ${{ github.sha }}
GIT_REF: ${{ github.ref }}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '24'
- name: Install
run: npm ci
- run: npm run type-check
- run: npm run check
- run: npm run build
- name: Test
env:
PACT_PROVIDER: ${{ env.PACT_PROVIDER }}
run: make test
- name: Publish pacts between pactflow-example-consumer and ${{ env.PACT_PROVIDER }}
run: GIT_BRANCH=${GIT_REF:11} make publish_pacts
env:
PACT_PROVIDER: ${{ env.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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- 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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- run: docker pull pactfoundation/pact-cli:latest
- name: Deploy
run: GIT_BRANCH=${GIT_REF:11} make deploy
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/test'