feat: Correctly handle error screens when the app is offline and allow to open cozy-apps when offline in iOS #1958
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: Quality Checks | |
on: | |
workflow_dispatch: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
quality_checks: | |
name: Quality Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Lint | |
run : yarn lint | |
- name: Test | |
run: yarn test | |
- name: Typecheck | |
run: yarn typecheck | |
- name: Validate Locales | |
run: yarn validate:locales | |
- name: Validate Cozy brand (should mirror src) | |
run: yarn brand:check |