Skip to content

Pin sGYD pool to top of list #1015

Pin sGYD pool to top of list

Pin sGYD pool to top of list #1015

Workflow file for this run

name: Pull Request
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
verify:
runs-on: ubuntu-latest
strategy:
matrix:
task: [format, lint, typecheck, test, depcruise]
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run ${{ matrix.task }}
run: |
if [ "${{ matrix.task }}" = "depcruise" ]; then
yarn workspace hyperdrive-trading ${{ matrix.task }}
else
yarn ${{ matrix.task }}
fi