Skip to content

actions

actions #20

Workflow file for this run

name: CI
'on':
- push
jobs:
code_checks:
runs-on: macos-14
container:
image: 'ruby:3.2.2'
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 20.x
registry-url: 'https://registry.npmjs.org'
# - name: Install MySQL
# uses: mirromutth/[email protected]
# with:
# host port: 3307 # Optional, default value is 3306. The port of host
# container port: 3307 # Optional, default value is 3306. The port of container
# character set server: 'utf8mb4' # Optional, default value is 'utf8mb4'. The '--character-set-server' option for mysqld
# collation server: 'utf8mb4_general_ci' # Optional, default value is 'utf8mb4_general_ci'. The '--collation-server' option for mysqld
# mysql version: '5.7.44' # Optional, default value is "latest". The version of the MySQL
# mysql database: 'homework_assignment_2024_test' # Optional, default value is "test". The specified database which will be create
# mysql root password: password # Required if "mysql user" is empty, default is empty. The root superuser password
# mysql user: 'rails_user' # Required if "mysql root password" is empty, default is empty. The superuser for the specified database. Can use secrets, too
# mysql password: password # Required if "mysql user" exists. The password for the "mysql user"
- name: Start MySQL
uses: ankane/setup-mysql@v1
with:
mysql-version: "5.7"
auto-start: true
root-password: password #The password for the root user.
user: rails_user # The name of the new user.
password: password # The password for the new user.
database: homework_assignment_2024_test # The name of the new database.
- run: mysql -uroot -e 'SELECT version()'
- name: Gem cache
id: cache-bundle
uses: actions/cache@v1
with:
path: vendor/bundle
key: 'bundle-${{ hashFiles(''**/Gemfile.lock'') }}'
- name: Bundle install
env:
RAILS_ENV: test
run: |
gem install bundler
bundle install --jobs 4 --retry 3 --path vendor/bundle
- name: Install yarn
run: npm install -g yarn
- name: Get yarn cache dir
id: yarn-cache-dir
run: 'echo "::set-output name=dir::$(yarn cache dir)"'
- name: Yarn cache
id: cache-yarn
uses: actions/cache@v1
with:
path: '${{ steps.yarn-cache-dir.outputs.dir }}'
key: 'yarn-${{ hashFiles(''**/yarn.lock'') }}'
- name: Yarn install
run: yarn install
- name: 'Setup DB, Run tests'
env:
RAILS_ENV: test
run: bundle exec rails db:create db:schema:load
- name: Audit
env:
RAILS_ENV: test
run: bundle exec rake audit
- name: Rubocop
env:
RAILS_ENV: test
run: bundle exec rubocop
- name: RSpec
env:
RAILS_ENV: test
run: bundle exec rspec