chore(deps): bump follow-redirects from 1.15.2 to 1.15.4 #79
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: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
node: [14, 16, 18] | |
name: Node.js ${{ matrix.node }} | |
steps: | |
- uses: actions/checkout@v3.3.0 | |
- uses: actions/setup-node@v3.6.0 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'yarn' | |
- uses: actions/cache@v3.2.4 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- run: yarn install --frozen-lockfile | |
- run: yarn lint | |
- run: yarn test:pretty | |
- run: yarn test | |
- run: yarn test:types | |
- run: yarn test:build |