Skip to content

feat: make theme configurable in app-config #57

feat: make theme configurable in app-config

feat: make theme configurable in app-config #57

Workflow file for this run

name: Analyze and Test
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
CodeQL:
name: Analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "22"
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: javascript # CodeQL JavaScript supports TypeScript
queries: security-and-quality
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
cypress-components:
name: Cypress Component Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "22"
- run: npm ci
- run: npm run cypress:run:component
cypress-e2e:
name: Cypress E2E Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "22"
- run: npm ci
- run: npm run cypress:run:e2e
karma-services:
name: Karma Service Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "22"
- run: npm ci
- run: npm run lib-build
- run: npm run lib-test -- --no-watch --browsers=GitlabHeadlessChrome