Skip to content

build(deps-dev): bump @commitlint/cli from 17.6.7 to 18.2.0 #268

build(deps-dev): bump @commitlint/cli from 17.6.7 to 18.2.0

build(deps-dev): bump @commitlint/cli from 17.6.7 to 18.2.0 #268

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: 16
- 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