From fb9c39845b25bd847109dd614cc8f87aec28d0c8 Mon Sep 17 00:00:00 2001 From: KOWX712 Date: Sat, 24 May 2025 01:22:11 +0800 Subject: [PATCH] misc: remove unused workflow --- .github/workflows/json-lint.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/json-lint.yml diff --git a/.github/workflows/json-lint.yml b/.github/workflows/json-lint.yml deleted file mode 100644 index f0507ea..0000000 --- a/.github/workflows/json-lint.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: pr_jsonlint - -on: - pull_request: - paths: - - 'module/webui/locales/*.json' - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: 18 - - - name: Install JSON linter - run: npm install -g jsonlint - - - name: Lint JSON files - run: | - for file in $(find module/webui/locales -name "*.json"); do - echo "Checking $file" - if ! jsonlint "$file"; then - echo "Error in $file" - exit 1 - fi - done \ No newline at end of file