Bump axios from 1.9.0 to 1.13.5 #18
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: SpeedScanX CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| name: Build, Audit & Check SpeedScanX | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📥 Repository auschecken | |
| uses: actions/checkout@v4 | |
| - name: ⚙️ Node.js Umgebung einrichten | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| - name: 📦 Abhängigkeiten installieren | |
| run: npm install | |
| - name: 🛡️ Sicherheitsprüfung (npm audit) | |
| run: npm audit --audit-level=moderate || true | |
| - name: 🧪 Node-Version prüfen | |
| run: node -v | |
| - name: 🧹 Projektverzeichnis prüfen | |
| run: ls -la |