
Since both projects are developed together and by the same team, we also want to have the same code structure and utility methods available in both projects. Therefore, this commit changes many files, but without a functional change.
109 lines
3.1 KiB
YAML
109 lines
3.1 KiB
YAML
name: CI
|
|
on:
|
|
- push
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
db:
|
|
image: postgres:15
|
|
env:
|
|
POSTGRES_PASSWORD: postgres
|
|
ports:
|
|
- 5432:5432
|
|
options: >-
|
|
--health-cmd pg_isready
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: 3.2
|
|
bundler-cache: true
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- name: Get yarn cache directory path
|
|
id: yarn-cache-dir-path
|
|
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
|
|
- name: Manage yarn, webpack and assets cache
|
|
uses: actions/cache@v3
|
|
# use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
|
id: yarn-cache
|
|
with:
|
|
path: |
|
|
${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
public/assets
|
|
public/packs-test
|
|
tmp/cache
|
|
tmp/shakapacker
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-yarn-
|
|
- name: Install yarn packages
|
|
run: yarn install --pure-lockfile
|
|
|
|
- name: Prepare config files
|
|
run: |
|
|
cp config/action_mailer.yml.ci config/action_mailer.yml
|
|
cp config/code_ocean.yml.ci config/code_ocean.yml
|
|
cp config/database.yml.ci config/database.yml
|
|
cp config/secrets.yml.ci config/secrets.yml
|
|
cp config/docker.yml.erb.ci config/docker.yml.erb
|
|
cp config/mnemosyne.yml.ci config/mnemosyne.yml
|
|
cp config/content_security_policy.yml.ci config/content_security_policy.yml
|
|
|
|
- name: Create database
|
|
env:
|
|
RAILS_ENV: test
|
|
run: bundler exec rake db:schema:load
|
|
- name: Precompile assets
|
|
env:
|
|
RAILS_ENV: test
|
|
run: bundler exec rake assets:precompile
|
|
- name: Run tests
|
|
env:
|
|
RAILS_ENV: test
|
|
CC_TEST_REPORTER_ID: true
|
|
run: bundle exec rspec --color --format RSpec::Github::Formatter --format progress --require spec_helper --require rails_helper
|
|
|
|
- name: Upload coverage reports to Codecov
|
|
uses: codecov/codecov-action@v3
|
|
if: ${{ success() || failure() }}
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: 3.2
|
|
bundler-cache: true
|
|
|
|
- name: Run rubocop
|
|
uses: reviewdog/action-rubocop@v2
|
|
with:
|
|
filter_mode: nofilter
|
|
rubocop_version: gemfile
|
|
rubocop_extensions: rubocop-rails:gemfile rubocop-rspec:gemfile rubocop-performance:gemfile
|
|
rubocop_flags: --parallel
|
|
reporter: github-check
|
|
skip_install: true
|
|
use_bundler: true
|
|
fail_on_error: true
|