Bump follow-redirects from 1.15.3 to 1.15.4 #659
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install | |
run: npm ci | |
- name: Run audit | |
run: npm run test:audit | |
- name: Run format test | |
run: npm run test:format | |
- name: Run Lint | |
run: npm run lint | |
- name: Run types test | |
run: npm run test:types | |
- name: Run build test | |
run: npm run build | |
- name: Run tests | |
run: npm run test | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |