Skip to content
This repository has been archived by the owner on Jan 3, 2025. It is now read-only.

Refactor registration_controller.rb #323

Refactor registration_controller.rb

Refactor registration_controller.rb #323

Workflow file for this run

name: Test
on:
pull_request:
branches: main
jobs:
test:
runs-on: ubuntu-latest
env:
RACK_ENV: test
steps:
- uses: actions/checkout@v4
- name: Set up Ruby # Only install ruby to get Rubocop
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2'
- name: Lint with Rubocop
run: |
gem install rubocop
rubocop
- name: Lint with Eslint
run: |
cd ./Frontend
npm install
npm run lint
- name: Start containers
run: docker compose -f "docker-compose.test.yml" up wca_registration_handler --abort-on-container-exit