Backport 'Enforce resources being found in the organization scope' to… #1605
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] Core (system specs)" | |
on: | |
push: | |
branches: | |
- develop | |
- release/* | |
- "*-stable" | |
pull_request: | |
branches-ignore: | |
- "chore/l10n*" | |
paths: | |
- "*" | |
- ".github/**" | |
- "decidim-api/**" | |
- "decidim-core/**" | |
- "decidim-dev/**" | |
env: | |
CI: "true" | |
RUBY_VERSION: 3.0.2 | |
NODE_VERSION: 16.9.1 | |
DECIDIM_MODULE: decidim-core | |
PARALLEL_TEST_PROCESSORS: 2 | |
DECIDIM_SERVICE_WORKER_ENABLED: true | |
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: | | |
sudo Xvfb -ac $DISPLAY -screen 0 1920x1084x24 > /dev/null 2>&1 & # optional | |
bundle exec rspec spec/system | |
name: RSpec | |
working-directory: ${{ env.DECIDIM_MODULE }} | |
env: | |
SIMPLECOV: "true" | |
DISPLAY: ":99" | |
- uses: codecov/codecov-action@v3 | |
name: Upload coverage | |
with: | |
token: ${{ env.CODECOV_TOKEN }} | |
name: decidim-core-system | |
flags: decidim-core-system | |
- uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: screenshots | |
path: ./spec/decidim_dummy_app/tmp/screenshots | |
if-no-files-found: ignore |