Skip to content

Bump @babel/traverse from 7.20.5 to 7.23.2 #117

Bump @babel/traverse from 7.20.5 to 7.23.2

Bump @babel/traverse from 7.20.5 to 7.23.2 #117

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.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: Install dependencies
run: npm ci
- name: Lint
run: |
npm run format-check
npm run lint
- name: Build
run: npm run build
- name: Run tests
run: npm run test -- --coverage