Skip to content

Bump follow-redirects from 1.15.2 to 1.15.4 #73

Bump follow-redirects from 1.15.2 to 1.15.4

Bump follow-redirects from 1.15.2 to 1.15.4 #73

Workflow file for this run

name: like-fs CI
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
package: [ local, gcs ]
node: [ 16, 18, 20 ]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8.6.3
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build package
run: |
cd packages/${{ matrix.package }}
pnpm build
- name: Test package
run: |
cd packages/${{ matrix.package }}
pnpm test