Skip to content

chore(deps): bump follow-redirects from 1.14.8 to 1.15.4 #15

chore(deps): bump follow-redirects from 1.14.8 to 1.15.4

chore(deps): bump follow-redirects from 1.14.8 to 1.15.4 #15

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ "staging" ]
pull_request:
branches: [ "staging" ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
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: npm ci
- run: npm run build
deploy:
name: Deploy
runs-on: ubuntu-latest
environment: staging
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
GENESIS_PWORD: ${{ secrets.GENESIS_PWORD }}
GENESIS_UNAME: ${{ secrets.GENESIS_UNAME }}
GENESIS_URL: ${{ secrets.GENESIS_URL }}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm run build
- run: npm run bundle -- --mode=production
- run: npx sls prune -n 3
- run: npx sls deploy --verbose --stage dev