Skip to content

Fix Cache or App Crashing to cause black screen #951

Fix Cache or App Crashing to cause black screen

Fix Cache or App Crashing to cause black screen #951

Workflow file for this run

name: PR Source Code Check
on:
pull_request:
branches:
- dev
jobs:
lint:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '20.13.1'
cache: 'yarn'
- run: yarn
- run: yarn lint:strict
tsc:
name: Run Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Add Submodule
run: git submodule add "https://${{ secrets.SUBMODULE_REPO_TOKEN }}@github.com/GooseFX1/tradingview_chart_lib.git" src/tv_charting_lib
- name: Update Submodule
run: git submodule update --init --recursive
- uses: actions/setup-node@v2
with:
node-version: '20.13.1'
cache: 'yarn'
- run: yarn
- run: yarn typecheck
prettier:
name: Run Prettier Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '20.13.1'
cache: 'yarn'
- run: yarn
- run: yarn format:check
# test:
# name: Run Test
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v2
# with:
# node-version: '20.13.1'
# cache: 'yarn'
# - run: yarn
# - run: yarn test