Bug #226703 - [Desktop => UI => Footer Page] Sharing links are missing, After clicking on the any icon sharing is not working [PFA],,Bug #226701 - [Desktop => UI => Footer Page] If I change the lang then Digit also be change #1400
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI/CD check | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Run prettier test | |
run: yarn format:check | |
# - name: Run the tests and generate coverage report | |
# run: yarn test | |
- name: Build | |
run: yarn build |