From e72349b201f2244c1f1fc85dd6ea7a8858257458 Mon Sep 17 00:00:00 2001 From: Carlos Santiago <5726971+csantiago132@users.noreply.github.com> Date: Sun, 29 Sep 2024 20:42:13 -0500 Subject: [PATCH] fix(docs): deletes old CI/CD pipeline --- .github/workflows/index.yml | 46 ------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .github/workflows/index.yml diff --git a/.github/workflows/index.yml b/.github/workflows/index.yml deleted file mode 100644 index ab51f2e..0000000 --- a/.github/workflows/index.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: CI/CD Workflow - -on: - pull_request: - push: - branches: - - main - -jobs: - setup: - uses: ./_base.yml@v1 - with: - node_version: '18' - - commitlint: - needs: setup - uses: ./commitlint.yml@v1 - with: - edit: '.git/COMMIT_EDITMSG' - - eslint: - needs: setup - uses: ./eslint-check.yml@v1 - with: - maxWarnings: '0' - - prettier: - needs: setup - uses: ./prettier-check.yml@v1 - - generate-writerside-docs: - needs: setup - if: github.ref == 'refs/heads/main' - uses: ./generate_writerside_docs.yml@v1 - with: - npm_token: ${{ secrets.NPM_TOKEN }} - github_token: ${{ secrets.GITHUB_TOKEN }} - - semantic-release: - needs: setup - if: github.ref == 'refs/heads/main' - uses: ./semantic-release.yml@v1 - with: - node_version: '18' - npm_token: ${{ secrets.NPM_TOKEN }} - github_token: ${{ secrets.GITHUB_TOKEN }}