Skip to content

Bump @babel/traverse from 7.22.10 to 7.23.2 #2684

Bump @babel/traverse from 7.22.10 to 7.23.2

Bump @babel/traverse from 7.22.10 to 7.23.2 #2684

Workflow file for this run

name: lint
on:
pull_request:
branches:
- develop
jobs:
lint:
timeout-minutes: 180
strategy:
matrix:
node-version: [16.x]
if: "!contains( github.event.pull_request.labels.*.name, 'skip-ci')"
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm ci
run: npm ci
- name: Run ESLint
run: npm run lint