Skip to content

chore: tokenize release version (#49) #228

chore: tokenize release version (#49)

chore: tokenize release version (#49) #228

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 10
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint
- name: Format check
run: pnpm run format:check
- name: Type check
run: pnpm run type-check
- name: Build
run: pnpm run build
- name: Test
run: pnpm run test:unit
- name: Setup Solana CLI
if: matrix.node-version == '20.x'
uses: ./.github/actions/setup-solana
- name: Test Integration
if: matrix.node-version == '20.x'
run: pnpm run test:integration