Skip to content

Bump follow-redirects from 1.15.2 to 1.15.4 #192

Bump follow-redirects from 1.15.2 to 1.15.4

Bump follow-redirects from 1.15.2 to 1.15.4 #192

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: SSMClientToolsSetup
on: push
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Software Trust Manager client tools
id: STMClientToolsSetup
run: |
npm ci
npm run build
npm start
- name: Verify installation
run: |
cd "${{ steps.STMClientToolsSetup.outputs.extractPath }}"
echo "Tools installed are ..."
ls
env:
SSM_CLIENT_INSTALLER_READ_TOKEN: ${{ secrets.SSM_CLIENT_INSTALLER_READ_TOKEN }}