Skip to content

Bump @babel/traverse from 7.18.2 to 7.23.2 #15

Bump @babel/traverse from 7.18.2 to 7.23.2

Bump @babel/traverse from 7.18.2 to 7.23.2 #15

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: PR Gate - Lint
on:
pull_request:
branches: [main]
jobs:
pull-request-gate:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Check Lint && Format
run: npm run prettier:verify