Skip to content

Fixed white screen bug #438

Fixed white screen bug

Fixed white screen bug #438

Workflow file for this run

name: Run Mobile CI
on:
push:
branches:
- develop
- "SCRUM*"
paths:
- "frontend/**"
pull_request:
branches:
- develop
paths:
- "frontend/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository in Virtual Machine
uses: actions/checkout@v4
- name: Install Dependencies
working-directory: frontend/iQMA-Skills-Builder
run: |
npm install
- name: Run Tests
working-directory: frontend/iQMA-Skills-Builder
run: |
npm test
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Super-Linter
uses: super-linter/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_TSX: true
VALIDATE_TYPESCRIPT_ES: true
IGNORE_GENERATED_FILES: true
IGNORE_GITIGNORED_FILES: true