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 c1f9f82
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/test-anchor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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: pnpm run anchor build
shell: bash
- run: pnpm run anchor test
shell: bash
28 changes: 28 additions & 0 deletions .github/workflows/test-web.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test and Build Web

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

- name: Build project
run: pnpm build

0 comments on commit c1f9f82

Please sign in to comment.