Skip to content

Issue 341 modernise secret handling #990

Issue 341 modernise secret handling

Issue 341 modernise secret handling #990

Workflow file for this run

name: Rails Template CI
on:
pull_request:
push:
branches:
- main
schedule:
# * is a special character in YAML so you have to quote this string
# * At 05:00 UTC every Monday, run the latest commit on the default or base branch
- cron: '0 5 * * MON'
# Restrict jobs in this workflow to only be allowed to read this repo by default.
#
# If you are wanting to introduce a job/tool that requires more permissions (such
# as posting comments or commits to the repository), then you should grant just
# that job the necessarily permissions by giving it a dedicated `permissions` block.
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version-file: ".node-version"
cache: "yarn"
- run: yarn install
- run: yarn run format-check
test_generated_apps:
runs-on: ubuntu-latest
strategy:
# don't stop all variants if one of them fails (we usually want to know
# how many fail)
fail-fast: false
matrix:
variant:
- name: defaults
config_path: "ackama_rails_template.config.yml"
skips: --skip-javascript
- name: all
config_path: "ci/configs/all.yml"
skips: --skip-javascript
- name: all-typescript
config_path: "ci/configs/all-typescript.yml"
skips: --skip-javascript
- name: basic
config_path: "ci/configs/basic.yml"
skips: --skip-javascript
- name: basic-typescript
config_path: "ci/configs/basic-typescript.yml"
skips: --skip-javascript
- name: github_actions
config_path: "ci/configs/github_actions.yml"
skips: --skip-javascript
- name: react
config_path: "ci/configs/react.yml"
skips: --skip-javascript
- name: react-typescript
config_path: "ci/configs/react-typescript.yml"
skips: --skip-javascript
- name: sidekiq
config_path: "ci/configs/sidekiq.yml"
skips: --skip-javascript
- name: devise
config_path: "ci/configs/devise.yml"
skips: --skip-javascript
- name: basic_with_skips
config_path: "ci/configs/basic.yml"
skips: --skip-spring --skip-javascript
- name: bootstrap
config_path: "ci/configs/bootstrap.yml"
skips: --skip-javascript
- name: bootstrap-typescript
config_path: "ci/configs/bootstrap-typescript.yml"
skips: --skip-javascript
- name: capistrano
config_path: "ci/configs/deploy_with_capistrano.yml"
skips: --skip-javascript
- name: ackama_ec2_capistrano
config_path: "ci/configs/deploy_with_ackama_ec2_capistrano.yml"
skips: --skip-javascript
services:
db:
image: postgres
env:
# The Postgres service fails its docker health check unless you
# specify these environment variables
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: anything # can be anything, is ignored by the tests
ports: ['5432:5432']
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout this repo
uses: actions/checkout@v3
with:
persist-credentials: false
# this ensures that osv-detector is available for running bin/ci-run
- name: Check dependencies for security vulnerabilities (and setup osv-detector)
uses: g-rath/check-with-osv-detector@main
- name: Install NodeJS
uses: actions/setup-node@v3
with:
cache: "yarn"
node-version-file: ".node-version"
# We don't cache gems or JS packages because we are actually testing how
# installation and setup works in this project so, while caching would
# make CI faster, it might hide problems.
- name: Install Ruby and Bundler
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: '3.0'
- name: Setup git for committing
run: |
# We do some git commits during our testing so these need to be set
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
- name: Run Rubocop
run: |
bundle install
bundle exec rubocop
- name: Run CI script
env:
# Remember that your app name becomes a top-level constant in the
# Rails app so you'll run into issues if that constant shares a name
# with a class provided by a gem. Basically, don't name your app
# "react", "sidekiq" etc.
APP_NAME: ${{ matrix.variant.name }}demo
CONFIG_PATH: ${{ matrix.variant.config_path }}
SKIPS: ${{ matrix.variant.skips }}
PGUSER: postgres
PGPASSWORD: postgres
PGHOST: localhost
RAILS_SECRET_KEY_BASE: "placeholder"
ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY: "placeholder"
ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY: "placeholder"
ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT: "placeholder"
run: ./ci/bin/build-and-test