-
Notifications
You must be signed in to change notification settings - Fork 1
114 lines (97 loc) · 2.94 KB
/
test.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
name: "[CI] Main Test"
on:
push:
branches:
- master
- release/*
- "*-stable"
pull_request:
env:
RUBY_VERSION: 3.0.7
NODE_VERSION: 16.9.1
jobs:
test-app:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:11
ports: ["5432:5432"]
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
POSTGRES_PASSWORD: postgres
env:
TEST_DB_DATABASE: participa_app_test
TEST_DB_USERNAME: postgres
TEST_DB_PASSWORD: postgres
DB_HOST: localhost
RECAPTCHA_SITE_KEY: 'recaptcha_site_key'
RECAPTCHA_SECRET_KEY: 'recaptcha_secret_key'
steps:
- uses: actions/[email protected]
with:
fetch-depth: 1
- uses: ruby/setup-ruby@master
with:
ruby-version: ${{ env.RUBY_VERSION }}
- uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- run: npm install
- name: Recover Ruby dependency cache
uses: actions/cache@v3
with:
path: ./vendor/bundle
key: ${{ runner.OS }}-rubydeps-${{ hashFiles('Gemfile.lock') }}
restore-keys: |
${{ runner.OS }}-rubydeps-${{ env.cache-name }}-
${{ runner.OS }}-rubydeps-
${{ runner.OS }}-
- name: Set bundle local config configvendor/bundle path
run: bundle config set --local path 'vendor/bundle'
# chromedriver workaround
- uses: nanasess/setup-chromedriver@v2
with:
chromedriver-version: 119.0.6045.105
- name: List Chrome
shell: "bash"
run: apt list --installed | grep chrome
- name: Remove Chrome
shell: "bash"
run: sudo apt remove google-chrome-stable
- uses: browser-actions/setup-chrome@v1
with:
chrome-version: 119.0.6045.105
- name: Install Ruby deps
uses: nick-invision/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
retry_on: error
command: bundle install --jobs 4 --retry 3
- name: Setup database
run: |
RAILS_ENV=test bundle exec rake db:create
RAILS_ENV=test bundle exec rake db:migrate
- name: Run RSpec
uses: nick-invision/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
retry_on: error
command: CI=1 RAILS_ENV=test bundle exec rspec --backtrace
# Prepare screenshots for upload
- name: Prepare screenshots for upload
run: RAILS_ENV=test bundle exec rails ci:screenshots:rename
if: always()
# Upload screenshots artifact
- name: Upload screenshots
uses: actions/upload-artifact@v3
if: always()
with:
name: screenshot_artifact
path: /home/runner/work/participa/participa/tmp/screenshots/