Skip to content

Bump http-proxy-middleware from 2.0.6 to 2.0.7 #64

Bump http-proxy-middleware from 2.0.6 to 2.0.7

Bump http-proxy-middleware from 2.0.6 to 2.0.7 #64

Workflow file for this run

# workflow name
name: Unit Tests
# execute on events
on:
pull_request:
types: [edited, opened, synchronize, reopened]
# jobs to run
jobs:
# install dependencies and run test command
unit_test:
name: Unit Tests
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
# 1: setup node
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
# 2: Checkout repository in the CWD
- name: Checkout repository
uses: actions/checkout@v4
# 3: install NPM dependencies
- name: Install dependencies
run: npm ci
# 4: run test command
- name: Run test command
run: npm run test