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