Fixed white screen bug #438
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: 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 |