Skip to content

fix(history-importer) move check for recent log error to correct place #194

fix(history-importer) move check for recent log error to correct place

fix(history-importer) move check for recent log error to correct place #194

Workflow file for this run

name: Code Check
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: ${{ github.job }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
name: Lint
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint:check
- name: Prettier
run: npm run format:check