mirror of
https://github.com/danbulant/oxc
synced 2026-05-22 13:48:55 +00:00
29 lines
735 B
YAML
29 lines
735 B
YAML
name: Update implementation status of all linter plugins
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "crates/oxc_linter/src/rules.rs"
|
|
- "tasks/lint_rules/**"
|
|
|
|
jobs:
|
|
lint_rules:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Branch
|
|
uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1
|
|
|
|
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
|
|
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
|