Skip to content

Bump @babel/traverse from 7.20.1 to 7.23.2 #14

Bump @babel/traverse from 7.20.1 to 7.23.2

Bump @babel/traverse from 7.20.1 to 7.23.2 #14

Workflow file for this run

name: Build Status
on:
push:
branches:
- main
tags:
- v*
paths-ignore:
- CONTRIBUTING.md
- LICENSE
- README.md
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
run: |
npm install
- name: Build
run: |
npm run build
- name: Lint
run: |
npm run lint
- name: Test
run: |
npm run test
- name: Upload coverage
uses: codecov/codecov-action@v3