From 2d8236795f39847b327b83165139f0ddef5c5f31 Mon Sep 17 00:00:00 2001 From: w0rng Date: Sat, 27 Jul 2024 10:42:19 +0700 Subject: [PATCH] clean ci --- .github/dependabot.yml | 7 ------ .github/workflows/codeql.yml | 41 ------------------------------------ .github/workflows/lint.yml | 28 ------------------------ 3 files changed, 76 deletions(-) delete mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/codeql.yml delete mode 100644 .github/workflows/lint.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index b6e48dc..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,7 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - rebase-strategy: "auto" diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index d8213fe..0000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: "CodeQL" - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - schedule: - - cron: "15 0 * * *" - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-latest - if: github.repository_owner == 'w0rng' - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: [ 'javascript-typescript' ] - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - - - name: Autobuild - uses: github/codeql-action/autobuild@v3 - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: "/language:${{matrix.language}}" diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 76e40e6..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Lint - -on: - push: - branches: - - master - pull_request: - -jobs: - lint: - name: Lint - runs-on: ubuntu-latest - if: github.repository_owner == 'w0rng' - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: '20' - check-latest: true - cache: 'npm' - - - name: npm run lint - run: | - cd src - npm ci - npm run lint