Skip to content

chore(deps): bump @babel/traverse from 7.22.8 to 7.23.2 #186

chore(deps): bump @babel/traverse from 7.22.8 to 7.23.2

chore(deps): bump @babel/traverse from 7.22.8 to 7.23.2 #186

Workflow file for this run

name: Check ESLint
on:
push:
branches:
- main
paths:
- "src/**/*.{js,jsx,ts,tsx}"
- ".eslintrc.json"
- "tsconfig.json"
- "package.json"
- "yarn.lock"
pull_request:
workflow_dispatch:
jobs:
linting:
permissions:
contents: read
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Run install
run: yarn install --frozen-lockfile
- name: Lint check
run: yarn lint