Skip to content

#187419120 Users should be able to Login with Email and Password #23

#187419120 Users should be able to Login with Email and Password

#187419120 Users should be able to Login with Email and Password #23

Workflow file for this run

name: Eagle e-commerce CI/CD
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
workflow_dispatch:
jobs:
build:
name: Building code
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: Running test
run: npm run test --coverage
- name: Build application
run: npm run build
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}