From c8f76c6308b94e4f713ba0257658f414bf628d80 Mon Sep 17 00:00:00 2001 From: EvolutionX <85353424+EvolutionX-10@users.noreply.github.com> Date: Sat, 2 Sep 2023 11:53:51 +0530 Subject: [PATCH] chore: i don't give a damn 'bout my reputation permalink: http://whatthecommit.com/1d321094aaf17617d868cba96c6ebbb5 --- .github/workflows/continuous-integration.yml | 43 -------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/continuous-integration.yml diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml deleted file mode 100644 index 95a0c39..0000000 --- a/.github/workflows/continuous-integration.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Continuous Integration - -on: - # Trigger the workflow on push or pull request, - # but only for the main branch - push: - branches: - - main - paths: - - 'plugins/**' - -jobs: - Prettier: - name: Run Prettier - runs-on: ubuntu-latest - - steps: - - name: Check out Git repository - uses: actions/checkout@v2 - with: - token: ${{ secrets.FORCE_PUSH }} - - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: 17 - - # Prettier must be in `package.json` - - name: Install Node.js dependencies - run: npm i -g prettier && npm i - - - name: Run Prettier - run: prettier --write plugins/*.ts - - - name: Commit changes - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: "style: run prettier" - commit_options: '--no-verify --signoff' - repository: . - commit_user_name: "GitHub Actions" - status_options: '--untracked-files=no' - push_options: '--force'