Skip to content

Squads integration #1197

Squads integration

Squads integration #1197

Workflow file for this run

name: Run Tests
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["18.x"]
solana: ["1.14.18"]
steps:
- name: Git checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cache build artefacts
uses: Swatinem/[email protected]
with:
cache-on-failure: 'true'
- name: Install Solana
uses: ./.github/actions/install-solana
with:
solana_version: ${{ matrix.solana }}
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Lint
continue-on-error: false
shell: bash
run: yarn lint
- name: Validator
continue-on-error: false
shell: bash
run: yarn validator & sleep 3
- name: Logs
continue-on-error: false
shell: bash
run: yarn validator:logs & sleep 3
- name: Test
run: yarn test