Skip to content

Bump @babel/traverse from 7.14.5 to 7.23.2 #679

Bump @babel/traverse from 7.14.5 to 7.23.2

Bump @babel/traverse from 7.14.5 to 7.23.2 #679

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Install Test
run: npm install
- name: Run UnitTests
run: npm test
env:
CI: true