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 262dfe1 commit 21283b6
Show file tree
Hide file tree
Showing 6 changed files with 1,162 additions and 23 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/test-anchor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Test and Build Anchor

on:
pull_request:
push:
branches: ['main']

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'

- name: Generate new keypair
run: solana-keygen new --no-bip39-passphrase

- name: Set solana target cluster to local
run: solana config set --url http://localhost:8899

- name: Check solana config
run: solana config get

- run: pnpm run anchor build
shell: bash

- run: pnpm run anchor test
shell: bash
31 changes: 31 additions & 0 deletions .github/workflows/test-web.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Test and Build Web

on:
pull_request:
push:
branches: ['main']

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
1 change: 0 additions & 1 deletion anchor/tests/counter.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import * as anchor from '@coral-xyz/anchor'
import {Program} from '@coral-xyz/anchor'
import {Keypair} from '@solana/web3.js'
import {Counter} from '../target/types/counter'
import '@types/jest';

describe('counter', () => {
// Configure the client to use the local cluster.
Expand Down
11 changes: 1 addition & 10 deletions anchor/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
{
"compilerOptions": {
"module": "commonjs",
"types": ["jest", "node"],
"typeRoots": ["./node_modules/@types"],
"lib": ["es2015"],
"target": "es6",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
}
"extends": "../tsconfig.json"
}
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,17 @@
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@eslint/js": "^9.9.0",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1",
Expand All @@ -68,5 +71,6 @@
"anchor": "0.30.1",
"solana": "1.18.0"
}
}
},
"packageManager": "[email protected]+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf"
}
Loading

0 comments on commit 21283b6

Please sign in to comment.