Skip to content

Fix HTML titles in admin panel (part 2) (#11116) #308

Fix HTML titles in admin panel (part 2) (#11116)

Fix HTML titles in admin panel (part 2) (#11116) #308

Workflow file for this run

name: "[CI] Core (lib specs)"
on:
push:
branches:
- develop
- release/*
- "*-stable"
pull_request:
branches-ignore:
- "chore/l10n*"
paths:
- "*"
- ".github/**"
- "decidim-api/**"
- "decidim-core/**"
- "decidim-dev/**"
- "packages/**"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build_app:
uses: ./.github/workflows/build_app.yml
secrets: inherit
name: Build test application
main:
strategy:
fail-fast: false
matrix:
test-command:
- bundle exec parallel_test --type rspec --pattern spec/lib
- bundle exec parallel_test --type rspec --pattern spec/system
- bundle exec parallel_test --type rspec --pattern spec/ --exclude-pattern 'spec/(system|lib)'
needs: build_app
name: Tests
uses: ./.github/workflows/test_app.yml
secrets: inherit
with:
working-directory: "decidim-core"
test_command: ${{ matrix.test-command }}