Skip to content

Bump @babel/traverse from 7.15.4 to 7.24.1 #17

Bump @babel/traverse from 7.15.4 to 7.24.1

Bump @babel/traverse from 7.15.4 to 7.24.1 #17

Workflow file for this run

name: Lint Code
on:
pull_request:
jobs:
tests:
runs-on: ${{ matrix.os }}
env:
TERM: xterm
strategy:
matrix:
os:
- ubuntu-22.04
node-version:
- '20'
steps:
# Install deps and cache
- name: Checkout code
uses: actions/checkout@v3
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm clean-install --prefer-offline --frozen-lockfile
# Lint Code
- name: Lint code
run: npm run lint