-
Notifications
You must be signed in to change notification settings - Fork 0
156 lines (135 loc) · 4.46 KB
/
backend-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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
name: Rails API CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: write
checks: write
env:
RAILS_ENV: test
POSTGRES_HOST: ${{ secrets.DB_HOST }}
POSTGRES_PORT: ${{ secrets.DB_PORT }}
POSTGRES_USER: ${{ secrets.POSTGRES_USER }}
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }}
POSTGRES_DB: ${{ secrets.POSTGRES_DB }}
POSTGRES_DATABASE: ${{ secrets.POSTGRES_DB }}
AUTH_SECRET: ${{ secrets.DEVISE_JWT_SECRET_KEY }}
BUNDLE_GEMFILE: ${{ github.workspace }}/backend/Gemfile
CLERK_SECRET_KEY: ${{ secrets.CLERK_SECRET_KEY }}
CLERK_PUBLISHABLE_KEY: ${{ secrets.CLERK_PUBLISHABLE_KEY }}
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.CLERK_PUBLISHABLE_KEY }}
CLERK_WEBHOOK_SECRET: ${{ secrets.CLERK_WEBHOOK_SECRET }}
jobs:
rspec:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16.3
env:
POSTGRES_USER: ${{ secrets.POSTGRES_USER }}
POSTGRES_PASSWORD: "${{ secrets.POSTGRES_PASSWORD }}"
POSTGRES_DB: ${{ secrets.POSTGRES_DB }}
ports:
- 5432:5432
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.4
bundler-cache: true
working-directory: ./backend
- name: Install dependencies
run: bundle check || bundle install
working-directory: ./backend
- name: Set up config/master.key
run: echo "${{ secrets.RAILS_MASTER_KEY }}" > ./backend/config/master.key
- name: Prepare database
run: bundle exec rake db:create db:schema:load --trace
working-directory: ./backend
- name: Run RSpec tests
run: bundle exec rspec --format RspecJunitFormatter --out test-results/rspec/results.xml --format documentation
working-directory: ./backend
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: always()
with:
report_paths: './backend/test-results/rspec/results.xml'
include_passed: true
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
if: ${{ !cancelled() }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: backend/coverage
files: '**/coverage/.resultset.json'
flags: rspec
name: codecov-umbrella
verbose: true
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
directory: backend/test-results
files: '**/*.xml'
flags: rspec
token: ${{ secrets.CODECOV_TOKEN }}
audit:
defaults:
run:
working-directory: ./backend
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.4
bundler-cache: true
working-directory: ./backend
- name: Install dependencies
run: bundle check || bundle install
- name: Run Ruby Audit
run: bundle exec ruby-audit check
rubocop:
runs-on: ubuntu-latest
env:
BUNDLE_ONLY: rubocop
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.4
bundler-cache: true
working-directory: ./backend
- name: Install dependencies
run: bundle check || bundle install
working-directory: ./backend
- name: Run RuboCop with Reviewdog
if: github.event_name == 'pull_request'
uses: reviewdog/action-rubocop@v2
with:
workdir: backend
rubocop_version: gemfile
rubocop_extensions: rubocop-rails:gemfile rubocop-rspec:gemfile rubocop-performance:gemfile rubocop-rspec:gemfile rubocop-github:gemfile
only_changed: true
github_token: ${{ github.token }}
reporter: github-pr-review # Default is github-pr-check
skip_install: true
use_bundler: true
rubocop_flags: --force-exclusion