-
Notifications
You must be signed in to change notification settings - Fork 5
104 lines (102 loc) · 2.65 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: CI
on:
push:
branches:
- trunk
pull_request:
jobs:
rspec:
name: RSpec
runs-on: ubuntu-latest
services:
postgres:
image: postgres:15
env:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
meilisearch:
image: getmeili/meilisearch:v1.9.0
env:
MEILI_MASTER_KEY: meilikey
ports:
- 7700:7700
steps:
- uses: actions/checkout@v4
- name: Install libpq-dev
run: sudo apt-get -yqq install libpq-dev
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3.4'
bundler-cache: true
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
- name: Setup application
run: bundle exec rake db:create db:schema:load yarn:install
env:
RAILS_ENV: test
DB_NAME: postgres
DB_USERNAME: postgres
DB_PASSWORD: postgres
- name: Compile assets
run: yarn build
env:
RAILS_ENV: test
NODE_ENV: test
- name: Run tests
run: bundle exec rspec
env:
RAILS_ENV: test
DB_NAME: postgres
DB_USERNAME: postgres
DB_PASSWORD: postgres
MEILISEARCH_HOST: http://localhost:7700
MEILISEARCH_API_KEY: meilikey
rubocop:
name: Rubocop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install libpq-dev
run: sudo apt-get -yqq install libpq-dev
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3.4'
bundler-cache: true
- name: Run Rubocop
run: bundle exec rubocop
javascript:
name: JavaScript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
- run: yarn install
- run: yarn lint && yarn fmt:check
assets:
name: Asset precompile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install libpq-dev
run: sudo apt-get -yqq install libpq-dev
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3.4'
bundler-cache: true
- uses: actions/setup-node@v4
with:
node-version: "22"
- run: yarn install
- run: bundle exec rails assets:precompile