build(deps): bump next from 15.4.7 to 15.4.9 in /blinks #99
Workflow file for this run
This file contains hidden or 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: Multisig CI | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| push: | |
| branches: [ "main" ] | |
| jobs: | |
| build-and-test-program: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Solana Environment | |
| uses: DhruvWebDev/solana-setup-action@v0.1.8 | |
| with: | |
| node-version: '20' | |
| solana-cli-version: '1.18.26' | |
| anchor-version: 'v0.31.1' | |
| solana-network-url: 'http://localhost:8899' | |
| solana-airdrop-amount: '100' | |
| solana-wallet-setup: true | |
| build-script: 'anchor build' | |
| # Add --skip-local-validator else the build would fail and another tip is to add --skip-build flag to fasten up the workflow because we have already built it in the anchor build | |
| test-script: 'anchor test --skip-local-validator --skip-build' | |
| deploy-script: 'anchor deploy --skip-local-validator --skip-build' | |
| x-ray-enabled: true | |
| working-directory: './multisig' |