[pull] main from forem:main #443
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 | |
on: | |
pull_request: | |
branches: | |
- main | |
merge_group: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
env: | |
COVERAGE: true | |
RAILS_ENV: test | |
NODE_ENV: test | |
DATABASE_URL_TEST: postgres://postgres:postgres@localhost:5432/Forem_test | |
DATABASE_NAME_TEST: Forem_test | |
KNAPSACK_PRO_FIXED_QUEUE_SPLIT: true | |
POSTGRES_PASSWORD: postgres | |
KNAPSACK_PRO_LOG_LEVEL: info | |
YARN_ENABLE_HARDENED_MODE: 0 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
E2E: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Install ImageMagick | |
run: sudo apt-get update && sudo apt-get install -y imagemagick | |
- name: Cache pre-compiled assets | |
uses: actions/cache@v4 | |
id: assetscache | |
with: | |
path: | | |
public/assets | |
key: ${{ runner.os }}-compiled-assets-v3-${{ hashFiles( 'app/assets/**', 'app/javascript/**', '**/package.json', '**/yarn.lock') }} | |
restore-keys: ${{ runner.os }}-compiled-assets-v3- | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: yarn | |
if: steps.assetscache.outputs.cache-hit != 'true' | |
- run: yarn install --immutable | |
if: steps.assetscache.outputs.cache-hit != 'true' | |
- run: bundle exec rails assets:precompile | |
if: steps.assetscache.outputs.cache-hit != 'true' | |
rspec: | |
runs-on: ubuntu-latest | |
needs: [build] | |
timeout-minutes: 20 | |
env: | |
KNAPSACK_PRO_CI_NODE_TOTAL: ${{ matrix.ci_node_total }} | |
KNAPSACK_PRO_CI_NODE_INDEX: ${{ matrix.ci_node_index }} | |
KNAPSACK_PRO_TEST_SUITE_TOKEN_RSPEC: ${{ secrets.KNAPSACK_PRO_TEST_SUITE_TOKEN_RSPEC }} | |
services: | |
postgres: | |
image: postgres:13-alpine | |
env: | |
POSTGRES_PASSWORD: postgres | |
ports: | |
- 5432:5432 | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
strategy: | |
fail-fast: false | |
matrix: | |
ci_node_total: [15] | |
ci_node_index: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Restore compiled assets | |
uses: actions/cache/restore@v4 | |
with: | |
fail-on-cache-miss: true | |
path: | | |
public/assets | |
key: ${{ runner.os }}-compiled-assets-v3-${{ hashFiles('app/assets/**', 'app/javascript/**', '**/package.json', '**/yarn.lock') }} | |
restore-keys: ${{ runner.os }}-compiled-assets-v3- | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: yarn | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Install ImageMagick | |
run: sudo apt-get update && sudo apt-get install -y imagemagick | |
- run: cp .env_sample .env | |
- run: bundle exec rails db:test:prepare | |
- name: RSpec | |
run: bin/knapsack_pro_rspec | |
- name: Upload RSpec artifacts | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: rspec-artifacts-${{ matrix.ci_node_index }} | |
path: tmp/capybara | |
- name: Rename folder | |
run: mv coverage/simplecov coverage/simplecov-${{ matrix.ci_node_index }} | |
- name: Upload test coverage result | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-rspec-${{ matrix.ci_node_index }} | |
path: coverage/ |