Bump http-proxy-middleware from 2.0.6 to 2.0.7 #64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |