Skip to content

New Crowdin updates #41658

New Crowdin updates

New Crowdin updates #41658

name: "[CI] Initiatives (unit tests)"
on:
push:
branches:
- develop
- release/*
- "*-stable"
pull_request:
branches-ignore:
- "chore/l10n*"
paths:
- "*"
- ".github/**"
- "decidim-admin/**"
- "decidim-comments/**"
- "decidim-core/**"
- "decidim-dev/**"
- "decidim-initiatives/**"
- "decidim-verifications/**"
env:
CI: "true"
RUBY_VERSION: 3.0.2
NODE_VERSION: 16.9.1
DECIDIM_MODULE: decidim-initiatives
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
env:
DATABASE_USERNAME: postgres
DATABASE_PASSWORD: postgres
DATABASE_HOST: localhost
RUBYOPT: '-W:no-deprecated'
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 }}
ruby_version: ${{ env.RUBY_VERSION }}
node_version: ${{ env.NODE_VERSION }}
- run: bundle exec rake parallel:spec['spec\/(?!system)']
name: RSpec
working-directory: ${{ env.DECIDIM_MODULE }}
env:
SIMPLECOV: "true"
- uses: codecov/codecov-action@v3
name: Upload coverage
with:
token: ${{ env.CODECOV_TOKEN }}
name: ${{ env.DECIDIM_MODULE }}
flags: ${{ env.DECIDIM_MODULE }}
- uses: actions/upload-artifact@v2
if: always()
with:
name: screenshots
path: ./spec/decidim_dummy_app/tmp/screenshots
if-no-files-found: ignore