Skip to content

Bump follow-redirects from 1.15.2 to 1.15.4 #59

Bump follow-redirects from 1.15.2 to 1.15.4

Bump follow-redirects from 1.15.2 to 1.15.4 #59

Workflow file for this run

# Name is optional and if present must be used
# in the url path for badges
name: Build
# Run on a dev branch
on:
push:
branches:
- dev
pull_request:
branches:
- master
jobs:
Build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.16]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# npm ci REQUIRES a package-lock.json file
- name: Install Fresh Dependencies
run: |
rm package-lock.json
npm install
- name: Build library
run: npm run build
- name: Log build output
run: |
ls -alt dist/