Skip to content

[Snyk] Security upgrade superagent from 5.3.1 to 7.0.2 #11

[Snyk] Security upgrade superagent from 5.3.1 to 7.0.2

[Snyk] Security upgrade superagent from 5.3.1 to 7.0.2 #11

Workflow file for this run

name: Run Tests
on:
pull_request: # Trigger the action when a PR is opened or updated
jobs:
test:
runs-on: ubuntu-latest # Use an Ubuntu environment
steps:
- uses: actions/checkout@v4 # Check out repository code
- name: Set up Node.js # Example for Node.js - adapt for your language
uses: actions/setup-node@v4
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test