Skip to content

Bump follow-redirects from 1.15.4 to 1.15.6 in /api #88

Bump follow-redirects from 1.15.4 to 1.15.6 in /api

Bump follow-redirects from 1.15.4 to 1.15.6 in /api #88

Workflow file for this run

name: NestJS CI
on:
push:
branches:
- main
- dev
- AW-42-documentation-tests-cicd
paths:
- "api/**"
pull_request:
branches:
- main
- dev
paths:
- "api/**"
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4.0.0
with:
node-version: "21"
- name: Install npm
run: npm install -g npm
- name: Install Dependencies
run: npm install --no-frozen-lockfile
working-directory: ./api
- name: Build
run: npm run build
working-directory: ./api