Skip to content

Bump @babel/traverse from 7.21.4 to 7.23.2 #202

Bump @babel/traverse from 7.21.4 to 7.23.2

Bump @babel/traverse from 7.21.4 to 7.23.2 #202

Workflow file for this run

name: CI
on:
- push
- pull_request
- workflow_dispatch
jobs:
tests:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['14', '16', '18', '19']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ./node_modules
key: npm-${{ hashFiles('yarn.lock') }}-${{ matrix.os }}-${{ matrix.node_version }}
restore-keys: npm-
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- run: yarn test