Update serialized string parser to prevent null array keys #1478
Workflow file for this run
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: Oxlint | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| types: [opened, labeled, synchronize] | |
| jobs: | |
| runOxlintInspection: | |
| if: contains(github.event.pull_request.labels.*.name, 'run analysis') | |
| name: Run Oxlint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Remove package files for faster install | |
| run: rm -f package.json package-lock.json | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: "22" | |
| - name: Install Oxlint | |
| run: npm install oxlint@1.59.0 --no-package-lock | |
| - name: Run Oxlint | |
| run: ./node_modules/.bin/oxlint . --format unix |