Skip to content

Bump @babel/traverse from 7.20.13 to 7.23.2 #894

Bump @babel/traverse from 7.20.13 to 7.23.2

Bump @babel/traverse from 7.20.13 to 7.23.2 #894

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 16.17.1
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node
- run: yarn install
- run: yarn build
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 16.17.1
- run: yarn install
- run: ./node_modules/.bin/npm-install-peers
- run: yarn test && ./node_modules/.bin/codecov -t ${{secrets.CODECOV_REPO_TOKEN}}