Skip to content

Bump follow-redirects from 1.15.4 to 1.15.6 #33

Bump follow-redirects from 1.15.4 to 1.15.6

Bump follow-redirects from 1.15.4 to 1.15.6 #33

Workflow file for this run

name: PR Build and Test
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
name: Test and Prerelease
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org
- name: Install
run: yarn install --frozen-lockfile
- name: Test
run: yarn test
- name: Coverage
run: yarn coverage
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: .nyc_output/lcov.info
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true