Skip to content

Bump basic-ftp from 5.3.0 to 6.0.0 #301

Bump basic-ftp from 5.3.0 to 6.0.0

Bump basic-ftp from 5.3.0 to 6.0.0 #301

Workflow file for this run

on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
name: Test Workflow
jobs:
test:
permissions:
contents: read # To checkout repository
actions: read # To read workflow artifacts (if needed)
checks: write
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 0 # Full history needed for SonarCloud blame data
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm' # Add caching for faster runs
- name: Install dependencies
run: npm ci --ignore-scripts && ./build-tools/search-for-shai-hulud.sh --full && npm rebuild esbuild
- name: Run tests
run: npm run test:ci
- name: SonarCloud Scan
uses: SonarSource/sonarqube-scan-action@v6
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}