Skip to content

chore: update actions #23

chore: update actions

chore: update actions #23

Workflow file for this run

name: 'Build and test program'
on:
push:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 'Solana Anchor build'
uses: metadaoproject/setup-anchor@v2
with:
anchor-version: '0.29.0'
solana-cli-version: '1.17.15'
node-version: '20.10.0'
- name: Install pnpm
uses: pnpm/action-setup@v2
id: pnpm-install
with:
run_install: true
- run: anchor build
shell: bash
- run: anchor test --provider.wallet THIS_IS_A_TEST_KEY.json --skip-build
shell: bash