Backport 'Enforce resources being found in the organization scope' to… #1548
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: "[CI] Meetings (system public)" | |
on: | |
push: | |
branches: | |
- develop | |
- release/* | |
- "*-stable" | |
pull_request: | |
branches-ignore: | |
- "chore/l10n*" | |
paths: | |
- "*" | |
- ".github/**" | |
- "decidim-admin/**" | |
- "decidim-assemblies/**" | |
- "decidim-core/**" | |
- "decidim-dev/**" | |
- "decidim-forms/**" | |
- "decidim-meetings/**" | |
- "decidim-participatory_processes/**" | |
env: | |
CI: "true" | |
RUBY_VERSION: 3.0.2 | |
NODE_VERSION: 16.9.1 | |
DECIDIM_MODULE: decidim-meetings | |
PARALLEL_TEST_PROCESSORS: 2 | |
CODECOV_TOKEN: bc15b944-6b42-420a-b3f9-a5a8fb214326 | |
jobs: | |
main: | |
name: Tests | |
runs-on: ubuntu-20.04 | |
if: "!startsWith(github.head_ref, 'chore/l10n')" | |
timeout-minutes: 60 | |
services: | |
postgres: | |
image: postgres:11 | |
ports: ["5432:5432"] | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
env: | |
POSTGRES_PASSWORD: postgres | |
validator: | |
image: ghcr.io/validator/validator:latest | |
ports: ["8888:8888"] | |
env: | |
DATABASE_USERNAME: postgres | |
DATABASE_PASSWORD: postgres | |
DATABASE_HOST: localhost | |
RUBYOPT: '-W:no-deprecated' | |
VALIDATOR_HTML_URI: http://localhost:8888/ | |
steps: | |
- uses: actions/checkout@v2.0.0 | |
with: | |
fetch-depth: 1 | |
- uses: ./.github/actions/module-rspec | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
name: ${{ env.DECIDIM_MODULE }} | |
processor_count: ${{ env.PARALLEL_TEST_PROCESSORS }} | |
ruby_version: ${{ env.RUBY_VERSION }} | |
node_version: ${{ env.NODE_VERSION }} | |
- run: bundle exec rake parallel:spec['spec\/system\/(?!admin)'] | |
name: RSpec | |
working-directory: ${{ env.DECIDIM_MODULE }} | |
env: | |
SIMPLECOV: "true" | |
- uses: codecov/codecov-action@v3 | |
name: Upload coverage | |
with: | |
token: ${{ env.CODECOV_TOKEN }} | |
name: decidim-meetings-system-public | |
flags: decidim-meetings-system-public | |
- uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: screenshots | |
path: ./spec/decidim_dummy_app/tmp/screenshots | |
if-no-files-found: ignore |