Skip to content

Bump @babel/traverse from 7.20.13 to 7.23.2 #72

Bump @babel/traverse from 7.20.13 to 7.23.2

Bump @babel/traverse from 7.20.13 to 7.23.2 #72

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- '**'
pull_request:
branches:
- '**'
jobs:
unit-test:
name: Unit Test - Node.js ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: install dependencies
run: npm ci
- name: lint
run: npm run lint
- name: test
run: npm test
- name: codecov
if: success()
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}