feat(linter): resolve ESM star exports (#2682) #1
This file contains 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 | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'crates/oxc_linter/**' | |
- 'tasks/lint_rules/**' | |
jobs: | |
lint_rules: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Branch | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- 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 |