Skip to content

ci(ci): implements commitlint and commitizen in githook #28

ci(ci): implements commitlint and commitizen in githook

ci(ci): implements commitlint and commitizen in githook #28

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
branches:
- dev
jobs:
test:
runs-on: ubuntu-latest
env:
POSTGRES_USER: inventory
POSTGRES_PASSWORD: inventory
POSTGRES_HOST: localhost
services:
postgres:
image: postgres:15-alpine
env:
POSTGRES_USER: ${{ env.POSTGRES_USER }}
POSTGRES_PASSWORD: ${{ env.POSTGRES_PASSWORD }}
POSTGRES_DB: inventory_test
POSTGRES_HOST_AUTH_METHOD: trust
ports: ['5432:5432']
options:
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 19.x
- name: Set up Yarn
run: npm install -g yarn
- name: Install Ruby dependencies
run: bundle install --jobs 4 --retry 3
- name: Install Node.js dependencies
run: yarn install
- name: Prepare database
env:
DATABASE_URL: postgres://${{ env.POSTGRES_USER }}:${{ env.POSTGRES_PASSWORD }}@${{ env.POSTGRES_HOST }}:5432/inventory_test
RAILS_ENV: test
run: |
bundle exec rails db:prepare
- name: Run tests
run: bundle exec rspec
- name: Run Vite tests
run: yarn test