Skip to content

chore(deps): bump js-yaml from 3.14.1 to 3.15.0 #290

chore(deps): bump js-yaml from 3.14.1 to 3.15.0

chore(deps): bump js-yaml from 3.14.1 to 3.15.0 #290

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: [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: Build
run: yarn build
- name: Coverage
run: yarn coverage
- 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