Add Overmind to bin/dev, implement Heroku deploy, and clean up Gemfile #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | ||
on: | ||
pull_request: | ||
branches: | ||
- "*" | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
scan: | ||
timeout-minutes: 10 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
bundler-cache: true | ||
lint: | ||
timeout-minutes: 10 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
bundler-cache: true | ||
- name: Lint code for consistent style | ||
run: bundle exec standardrb | ||
test: | ||
timeout-minutes: 10 | ||
runs-on: ubuntu-latest | ||
services: | ||
postgres: | ||
image: postgres:latest | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: password | ||
POSTGRES_DB: test | ||
ports: ["5432:5432"] | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
redis: | ||
image: redis | ||
ports: ["6379:6379"] | ||
options: >- | ||
--health-cmd "redis-cli ping" | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
bundler-cache: true | ||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: ".tool-versions" | ||
cache: yarn | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y -qq libvips | ||
yarn install --frozen-lockfile | ||
- name: Run tests | ||
env: | ||
DATABASE_URL: postgres://postgres:password@localhost:5432/test | ||
REDIS_URL: redis://localhost:6379/0 | ||
RAILS_ENV: test | ||
# RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} | ||
run: | | ||
bin/rails test:prepare | ||
bin/rails db:test:prepare | ||
bin/rails test | ||
deploy-development: | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | ||
needs: [unit_tests, system_tests] | ||
Check failure on line 98 in .github/workflows/main.yml GitHub Actions / CIInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Deploy to Heroku | ||
uses: akhileshns/[email protected] | ||
with: | ||
branch: main | ||
heroku_api_key: ${{secrets.HEROKU_API_KEY}} | ||
heroku_app_name: "phlex-ui-web" | ||
heroku_email: "[email protected]" |