Skip to content

Bump @babel/traverse from 7.10.5 to 7.24.7 #59

Bump @babel/traverse from 7.10.5 to 7.24.7

Bump @babel/traverse from 7.10.5 to 7.24.7 #59

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm run test:coverage
env:
CI: true
- name: Report on coverage
if: github.event_name == 'pull_request'
uses: slavcodev/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
clover_file: "coverage/clover.xml"
threshold_alert: 50
threshold_warning: 90