chore(deps-dev): bump form-data from 4.0.2 to 4.0.5 #20
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 | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: | |
| - macos-15 | |
| - ubuntu-24.04 | |
| - windows-2025 | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/[email protected] | |
| - name: Use Node version defined in manifest | |
| uses: volta-cli/action@v4 | |
| - name: Install Node dependencies | |
| run: npm ci | |
| - name: Run Node tests | |
| run: npm t | |