Bump form-data from 3.0.1 to 3.0.4 #2189
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: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Build | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04] | |
| node-version: [18.x, 20.x] | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| CI: true | |
| steps: | |
| - uses: actions/checkout@v1 | |
| with: | |
| fetch-depth: 1 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Versions | |
| run: | | |
| echo Node: | |
| node --version | |
| echo NPM: | |
| npm --version | |
| - name: NPM audit | |
| continue-on-error: true | |
| run: npm audit | |
| - name: NPM install (ci) | |
| run: npm ci | |
| - name: Lint | |
| run: npm run eslint | |
| - name: Build | |
| run: npm run build | |
| - name: Flow | |
| run: npm run flow check | |
| - name: Test | |
| run: npm test -- --verbose --coverage | |
| - name: Archive Test Code Coverage Report | |
| continue-on-error: true | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Test Code Coverage Report ${{ matrix.node-version }} | |
| path: coverage/ | |
| - name: Lint Documentation | |
| run: npm run markdownlint |