Skip to content

#187419128 users should be able to view and update his/her profile #147

#187419128 users should be able to view and update his/her profile

#187419128 users should be able to view and update his/her profile #147

Workflow file for this run

name: Eagle e-commerce CI/CD
on:
push:
branches:
- dev
pull_request:
branches:
- 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 }}
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]