Bug #227084 - [Home=>Mobile] Explore bar is missing on home page,Bug #224411 - [Webapp] On scrolling some pages are flickering,Bug #223483-[Webapp] Page Flickers When Switching Tabs from Home Page - #1442
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 |