Skip to content

chore(deps-dev): bump @babel/traverse from 7.21.2 to 7.23.2 #570

chore(deps-dev): bump @babel/traverse from 7.21.2 to 7.23.2

chore(deps-dev): bump @babel/traverse from 7.21.2 to 7.23.2 #570

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
npm run build --if-present
npm test
npm run coveralls
env:
CI: true
COVERALLS_REPO_TOKEN: ${{secrets.COVERALLS_REPO_TOKEN}}