chore(deps): update rust crate oxc_resolver to v6 (#10643) #17
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: Update implementation status of all linter plugins | |
| permissions: {} | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/lint_rules.yml" | |
| - "crates/oxc_linter/src/rules.rs" | |
| - "crates/oxc_linter/src/utils/mod.rs" # here are the remaps for some plugins | |
| - "tasks/lint_rules/**" | |
| jobs: | |
| lint_rules: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| issues: write | |
| steps: | |
| - name: Checkout Branch | |
| uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1 | |
| - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version-file: .node-version | |
| - name: Install latest plugins | |
| working-directory: tasks/lint_rules | |
| run: npm install | |
| - name: Run task | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: node ./tasks/lint_rules --update |