Skip to content

build(deps-dev): bump @commitlint/config-conventional from 18.4.3 to 19.1.0 #286

build(deps-dev): bump @commitlint/config-conventional from 18.4.3 to 19.1.0

build(deps-dev): bump @commitlint/config-conventional from 18.4.3 to 19.1.0 #286

Workflow file for this run

name: Run UI Checks
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['16']
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn
- name: Run type check
run: yarn run tsc:check
- name: Run lint check
run: yarn run lint:check
# - name: Run tests
# run: yarn test