Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

Bump follow-redirects from 1.15.3 to 1.15.4 #156

Bump follow-redirects from 1.15.3 to 1.15.4

Bump follow-redirects from 1.15.3 to 1.15.4 #156

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: echo -e '//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}'$'\n'"$(cat .npmrc)" > .npmrc
- run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.PACKAGE_READ }}
- run: npm run build --if-present
env:
NODE_AUTH_TOKEN: ${{ secrets.PACKAGE_READ }}
- run: npm test
env:
NODE_AUTH_TOKEN: ${{ secrets.PACKAGE_READ }}
CI: true