Skip to content

feat(match): display match receive/deliver in order details #108

feat(match): display match receive/deliver in order details

feat(match): display match receive/deliver in order details #108

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Cache install
uses: actions/cache@v2
with:
path: ./node_modules/
key: ${{ github.sha }}-install
code_style:
runs-on: ubuntu-latest
needs: install
steps:
- uses: actions/checkout@v3
- name: Retrive install cache
uses: actions/cache@v2
with:
path: ./node_modules/
key: ${{ github.sha }}-install
- name: prettier
run: yarn prettier:check
prevent_bl_connect_version_conflict:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check bl-connect versions
run: '[[ $(yarn why @boklisten/bl-connect | grep "=> Found" --count) -eq 1 ]]'