Skip to content

Commit

Permalink
chore: add GitHub Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
beeman committed Oct 14, 2024
1 parent a8e1730 commit 7939d6f
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test-anchor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test and Build Anchor

on: [push]

jobs:
run-anchor-build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 20.18.10
cache: 'pnpm'
- uses: metadaoproject/[email protected]
with:
anchor-version: '0.30.1'
node-version: '20.18.0'
solana-cli-version: '1.18.9'
- run: anchor build
shell: bash
- run: anchor test
shell: bash
19 changes: 19 additions & 0 deletions .github/workflows/test-web.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test and Build Web

on: [push]

jobs:
run-anchor-build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 20.18.10
cache: 'pnpm'
- run: pnpm build

0 comments on commit 7939d6f

Please sign in to comment.