Skip to content

938: Add code for smart contract from puffer launchpad #8

938: Add code for smart contract from puffer launchpad

938: Add code for smart contract from puffer launchpad #8

Workflow file for this run

name: Build and Test
on:
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: latest
run_install: true
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
- name: Build
run: pnpm build