This repository was archived by the owner on Dec 19, 2025. It is now read-only.
[Snyk] Upgrade axios from 1.7.7 to 1.13.0 #201
This file contains hidden or 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
| name: CI/CD Pipeline for Pull Requests to Master | |
| 'on': | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: | |
| - 20.x | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: 'Use Node.js ${{ matrix.node-version }}' | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '${{ matrix.node-version }}' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run tests | |
| run: npm test | |
| timeout-minutes: 1 |