Skip to content

Merge pull request #24 from buerokratt/v3.3.3 #7

Merge pull request #24 from buerokratt/v3.3.3

Merge pull request #24 from buerokratt/v3.3.3 #7

Workflow file for this run

name: Run checks
on:
push:
branches: [main, dev]
paths:
- "GUI/**"
- ".github/**"
pull_request:
types: [opened, ready_for_review, reopened, synchronize]
paths:
- "GUI/**"
- ".github/**"
concurrency:
group: ${{ github.ref }}-checks
cancel-in-progress: true
jobs:
frontend-format:
uses: ./.github/workflows/run-check.yml
with:
command: npm run format
frontend-lint:
uses: ./.github/workflows/run-check.yml
with:
command: npm run lint
frontend-test:
uses: ./.github/workflows/run-check.yml
with:
command: npm run test:run
frontend-typecheck:
uses: ./.github/workflows/run-check.yml
with:
command: npm run typecheck
frontend-build:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- run: cd GUI && docker image build .