Skip to content

fix: fix performance issues on token selector in widget #1089

fix: fix performance issues on token selector in widget

fix: fix performance issues on token selector in widget #1089

Workflow file for this run

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 }}