demarches-normaliennes/.github/workflows/ci.yml

158 lines
4.2 KiB
YAML
Raw Normal View History

2021-02-17 19:06:55 +01:00
name: Continuous Integration
on:
push:
2023-02-21 18:28:48 +01:00
branches: [main]
2021-02-17 19:06:55 +01:00
pull_request:
2023-02-21 18:28:48 +01:00
branches: [main]
merge_group:
branches: [main]
2021-02-17 19:06:55 +01:00
jobs:
linters:
name: Linters
runs-on: ubuntu-latest
services:
postgres:
2022-10-19 15:07:40 +02:00
image: postgres:14
env:
POSTGRES_USER: tps_test
POSTGRES_DB: tps_test
POSTGRES_PASSWORD: tps_test
ports: [ "5432:5432" ]
2021-02-17 19:06:55 +01:00
steps:
2022-10-20 11:55:10 +02:00
- uses: actions/checkout@v3
- name: Setup the app code and dependancies
uses: ./.github/actions/ci-setup-rails
2021-02-17 19:06:55 +01:00
- name: Run linters
run: |
bundle exec rake lint
bundle exec rake zeitwerk:check
2021-02-17 19:06:55 +01:00
2022-07-05 13:38:00 +02:00
js_tests:
name: JavaScript tests
runs-on: ubuntu-latest
steps:
2022-10-20 11:55:10 +02:00
- uses: actions/checkout@v3
2022-07-05 13:38:00 +02:00
- name: Setup Node
2022-10-20 11:55:10 +02:00
uses: actions/setup-node@v3
2022-07-05 13:38:00 +02:00
with:
cache: 'yarn'
- name: Install Node modules
run: |
node --version
yarn install --frozen-lockfile
shell: bash
- name: Run tests
run: |
yarn test
unit_tests:
name: Unit tests
2021-02-17 19:06:55 +01:00
runs-on: ubuntu-latest
services:
postgres:
2022-10-19 15:07:40 +02:00
image: postgres:14
2021-02-17 19:06:55 +01:00
env:
POSTGRES_USER: tps_test
POSTGRES_DB: tps_test
POSTGRES_PASSWORD: tps_test
ports: ["5432:5432"]
strategy:
matrix:
instances: [0, 1, 2, 3, 4, 5]
2021-02-17 19:06:55 +01:00
steps:
2022-10-20 11:55:10 +02:00
- uses: actions/checkout@v3
2021-02-17 19:06:55 +01:00
- name: Setup the app runtime and dependencies
uses: ./.github/actions/ci-setup-rails
2021-02-17 19:06:55 +01:00
- name: Pre-compile assets
uses: ./.github/actions/ci-setup-assets
- name: Setup split tests
uses: ./.github/actions/ci-setup-split-tests
with:
results_path: tmp/*.junit.xml
- name: Run tests
2021-10-26 14:01:56 +02:00
run: |
SPEC_FILES=$(./split_tests -glob='spec/**/*_spec.rb' -exclude-glob='spec/system/**' -split-index=${{ strategy.job-index }} -split-total=${{ strategy.job-total }} -junit -junit-path=tmp/*.junit.xml)
echo "Running tests for bin/rspec $SPEC_FILES"
bin/rspec $SPEC_FILES --format progress --format RspecJunitFormatter --out tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
- name: Upload test results for this instance
2022-10-20 11:55:10 +02:00
uses: actions/upload-artifact@v3
with:
name: test-reports
path: tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
2021-10-26 14:01:56 +02:00
system_tests:
name: System tests
runs-on: ubuntu-latest
services:
postgres:
2022-10-19 15:07:40 +02:00
image: postgres:14
2021-02-17 19:06:55 +01:00
env:
POSTGRES_USER: tps_test
POSTGRES_DB: tps_test
POSTGRES_PASSWORD: tps_test
ports: ["5432:5432"]
2021-02-17 19:06:55 +01:00
strategy:
matrix:
instances: [0, 1]
steps:
2022-10-20 11:55:10 +02:00
- uses: actions/checkout@v3
- name: Setup the app runtime and dependencies
uses: ./.github/actions/ci-setup-rails
- name: Pre-compile assets
uses: ./.github/actions/ci-setup-assets
- name: Setup split tests
uses: ./.github/actions/ci-setup-split-tests
with:
results_path: tmp/*.junit.xml
2021-02-17 19:06:55 +01:00
- name: Run tests
run: |
SPEC_FILES=$(./split_tests -glob='spec/system/**/*_spec.rb' -split-index=${{ strategy.job-index }} -split-total=${{ strategy.job-total }} -junit -junit-path=tmp/*.junit.xml)
echo "Running tests for bin/rspec $SPEC_FILES"
2022-06-17 12:36:21 +02:00
RAILS_ENV=test bin/rspec $SPEC_FILES --format progress --format RspecJunitFormatter --out tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
- name: Upload test results for this instance
2022-10-20 11:55:10 +02:00
uses: actions/upload-artifact@v3
with:
name: test-reports
path: tmp/rspec_${{ github.job }}_${{ strategy.job-index }}.junit.xml
save_test_reports:
name: Save test reports
needs: [unit_tests, system_tests]
runs-on: ubuntu-latest
steps:
2022-10-20 11:55:10 +02:00
- uses: actions/checkout@v3
- name: Collect test results from all instances
2022-10-20 11:55:10 +02:00
uses: actions/download-artifact@v3
with:
name: test-reports
path: tmp
- name: Save test results and timing data, to better split future tests
uses: ./.github/actions/ci-save-split-tests
with:
results_path: tmp/*.junit.xml