Csur 2024-10-16 #88
Workflow file for this run
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: Validate and verify | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
validate-verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone @api3/contracts | |
uses: actions/checkout@v4 | |
- name: Set up pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Validate deployment config | |
run: pnpm validate-deployment-config | |
- name: Validate deployments | |
run: pnpm validate-deployments | |
if: always() | |
- name: Verify deployments | |
run: pnpm verify-deployments | |
if: always() |