feat: Added KYC expiration support #145
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: Dry-run | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
deploy-widgets: | |
name: Diff from PR | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target_account: | |
- dry_run_command: npm run dry-run:devhub | |
- dry_run_command: npm run dry-run:events | |
- dry_run_command: npm run dry-run:infrastructure | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
npm ci | |
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/bos-cli-rs/bos-cli-rs/releases/download/v0.3.15/bos-cli-installer.sh | sh | |
- name: Dry-run widgets | |
run: | | |
${{ matrix.target_account.dry_run_command }} |