Skip to content

chore: add GitHub Workflow #8

chore: add GitHub Workflow

chore: add GitHub Workflow #8

Workflow file for this run

name: Test and Build Anchor
on: [push]
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- uses: metadaoproject/setup-anchor@v2
with:
anchor-version: '0.30.1'
node-version: '20'
solana-cli-version: '1.18.9'
- run: anchor build
shell: bash
- run: anchor test
shell: bash