Skip to content

Feat: Implement email integration #1

Feat: Implement email integration

Feat: Implement email integration #1

Workflow file for this run

name: CI for taskMaster Project
on:
push:
branches: ['develop']
pull_request:
branches: ['develop']
jobs:
test:
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
- name: Set up Docker Compose
run: sudo apt-get install docker-compose
- name: Build and run tests
run: docker-compose -f docker-compose.test.yml up --build --abort-on-container-exit --exit-code-from test
- run: npm run lint
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: jkarenzi/task-master-be
directory: coverage/
cleanup:

Check failure on line 41 in .github/workflows/CI.yml

View workflow run for this annotation

GitHub Actions / CI for taskMaster Project

Invalid workflow file

The workflow is not valid. .github/workflows/CI.yml (Line: 41, Col: 5): Unexpected value 'cleanup'
runs-on: ubuntu-latest
if: always()
steps:
- name: Shutdown and remove services
run: docker-compose -f docker-compose.test.yml down