Skip to content

360Dialog WhatsApp #2821

360Dialog WhatsApp

360Dialog WhatsApp #2821

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
env:
RUBYOPT: "-W:no-deprecated"
RAILS_ENV: test
DATABASE_URL: postgres://postgres:postgres@localhost:5432
services:
postgres:
image: postgres:12.2
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: app_test
ports: [ "5432:5432" ]
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Update file watchers because of rails settings cached
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
- name: Install ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0.0
bundler-cache: true
- name: Cache NPM dependencies
uses: actions/cache@v3.2.6
with:
path: node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-npm-
- name: Install NPM dependencies
run: npm install
- name: Run prettier
run: npm run prettier
- name: Build JS
run: npm run build:js
- name: Build CSS
run: npm run build:css
- name: Run database migrations
run: bin/rails db:migrate
- name: Run rubocop
run: bundle exec rubocop
- name: Run tests
run: bin/rake spec