From 08c738084d35a4a057329557628916d04607f229 Mon Sep 17 00:00:00 2001 From: jkarenzi Date: Thu, 13 Jun 2024 13:19:46 +0200 Subject: [PATCH] feat(email-verification): implement email integraton -implement email verification -implement 2fa authentication [Delivers #4] --- .github/workflows/CI.yaml | 33 ---------------------- .github/workflows/{dockerci.yml => CI.yml} | 0 2 files changed, 33 deletions(-) delete mode 100644 .github/workflows/CI.yaml rename .github/workflows/{dockerci.yml => CI.yml} (100%) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml deleted file mode 100644 index 1fdcb05..0000000 --- a/.github/workflows/CI.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: CI for taskMaster Project - -on: - push: - branches: ['develop'] - pull_request: - branches: ['develop'] - -jobs: - build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [20.x] - - steps: - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - cache: 'npm' - - run: npm ci - - run: npm run build - - run: npm run test:ci - - run: npm run lint - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4.0.1 - with: - token: ${{ secrets.CODECOV_TOKEN }} - slug: jkarenzi/task-master-be - directory: coverage/ diff --git a/.github/workflows/dockerci.yml b/.github/workflows/CI.yml similarity index 100% rename from .github/workflows/dockerci.yml rename to .github/workflows/CI.yml