Skip to content

Phani | A - 1206804799445947 | Update IPD & CareViewDashboard Header with the navigations links and profile actions #404

Phani | A - 1206804799445947 | Update IPD & CareViewDashboard Header with the navigations links and profile actions

Phani | A - 1206804799445947 | Update IPD & CareViewDashboard Header with the navigations links and profile actions #404

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Workflow to validate PRs
on:
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: "14.x"
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test:ci