Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

feat: profile merge and retrieve #1768

feat: profile merge and retrieve

feat: profile merge and retrieve #1768

Workflow file for this run

# Unique name for this workflow
name: Validate PR and Run Tests
# Definition when the workflow should run
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
branches:
- develop
- main
# Jobs to be executed
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npx lerna bootstrap
- run: npx lerna run build
- run: npx lerna run test -- --colors
- run: bash <(curl -s https://codecov.io/bash) -v