Skip to content

offering a way to force legacy trade by source range #460

offering a way to force legacy trade by source range

offering a way to force legacy trade by source range #460

Workflow file for this run

name: Test
on:
pull_request:
types: [opened, edited, ready_for_review, reopened]
push:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Run Tests
run: yarn test