From 35e4cc983cda11dd42f1e51b95b8f611f1bb5cc1 Mon Sep 17 00:00:00 2001 From: Bram Borggreve Date: Mon, 14 Oct 2024 15:31:02 -0500 Subject: [PATCH] chore: add GitHub Workflow --- .github/workflows/test-anchor.yml | 49 +++++++++++++++++++++++++++++++ .github/workflows/test-web.yml | 31 +++++++++++++++++++ package.json | 3 +- 3 files changed, 82 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/test-anchor.yml create mode 100644 .github/workflows/test-web.yml diff --git a/.github/workflows/test-anchor.yml b/.github/workflows/test-anchor.yml new file mode 100644 index 0000000..b510697 --- /dev/null +++ b/.github/workflows/test-anchor.yml @@ -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 diff --git a/.github/workflows/test-web.yml b/.github/workflows/test-web.yml new file mode 100644 index 0000000..6718a15 --- /dev/null +++ b/.github/workflows/test-web.yml @@ -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 diff --git a/package.json b/package.json index 2ef93ae..5b15ee9 100644 --- a/package.json +++ b/package.json @@ -68,5 +68,6 @@ "anchor": "0.30.1", "solana": "1.18.0" } - } + }, + "packageManager": "pnpm@9.7.0+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf" }