Skip to content

chore: bump @babel/traverse from 7.21.5 to 7.23.2 #23

chore: bump @babel/traverse from 7.21.5 to 7.23.2

chore: bump @babel/traverse from 7.21.5 to 7.23.2 #23

Workflow file for this run

name: Run Lint & Tests
on:
pull_request:
push:
branches:
- main
jobs:
test:
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build dist
run: npm run build
- name: Lint
run: npm run test:lint
- name: Run tests
run: npm test