Skip to content

Bump @babel/traverse from 7.15.4 to 7.23.2 #12

Bump @babel/traverse from 7.15.4 to 7.23.2

Bump @babel/traverse from 7.15.4 to 7.23.2 #12

Workflow file for this run

name: PR Build and Test
on:
pull_request
jobs:
test:
runs-on: ubuntu-latest
name: Node.JS ${{ matrix.node-version }}
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
- name: Test
env:
LAMBDA_REMOTE_DOCKER: true
run: yarn test
- name: Coveralls
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: .nyc_output/lcov.info
flag-name: run-${{ matrix.node }}
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true