fix(widget-v2): initial state with props in app store and fix bug of passing liquidity sources via config #997
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Conventional Commits Check | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, labeled] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- name: Restore cache | |
uses: actions/cache@v3 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- name: Install packages | |
run: yarn install --frozen-lockfile | |
- name: Checking Conventional Commits | |
run: node ./scripts/check-conventional-commits/command.mjs | |
env: | |
REF: ${{ github.ref }} | |
BASE_REF: ${{ github.event.pull_request.base.ref }} |