forked from decidim/decidim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
976 changed files
with
19,952 additions
and
6,064 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.27.5 | ||
0.27.8 |
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: "[CI] Core (tasks tests)" | ||
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 | ||
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/[email protected] | ||
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/tasks\/(?!decidim_webpacker_tasks.rake)'] | ||
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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: "[CI] Core (webpacker tasks tests)" | ||
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 | ||
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/[email protected] | ||
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/tasks/decidim_webpacker_tasks.rake'] | ||
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 |
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
Oops, something went wrong.