Skip to content

Bump @babel/traverse from 7.22.8 to 7.23.2 #20

Bump @babel/traverse from 7.22.8 to 7.23.2

Bump @babel/traverse from 7.22.8 to 7.23.2 #20

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
strategy:
matrix:
node: [16.13.0, 18.0.0]
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Update NPM to latest
run: npm install npm@latest -g
- name: Print Node.js and NPM version
run: |
node -v
npm -v
- name: Install dependencies
run: npm ci
- name: Run tests
timeout-minutes: 5
run: npm test