forked from hitobito/hitobito
-
Notifications
You must be signed in to change notification settings - Fork 1
144 lines (122 loc) · 3.7 KB
/
tests.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
name: 'Rails Lint and Test'
on:
workflow_dispatch:
push:
paths-ignore:
- 'doc/**'
- '**.md'
pull_request:
paths-ignore:
- 'doc/**'
- '**.md'
jobs:
build:
runs-on: 'ubuntu-20.04'
env:
HEADLESS: true
RAILS_DB_ADAPTER: mysql2
RAILS_DB_HOST: 127.0.0.1
RAILS_DB_PORT: 33066
RAILS_DB_USERNAME: hitobito
RAILS_DB_PASSWORD: hitobito
RAILS_DB_NAME: hitobito_test
RAILS_TEST_DB_NAME: hitobito_test
TZ: Europe/Berlin
RAILS_USE_TEST_GROUPS: true
services:
mysql:
image: 'mysql:5.7'
env:
MYSQL_USER: 'hitobito'
MYSQL_PASSWORD: 'hitobito'
MYSQL_DATABASE: 'hitobito_test'
MYSQL_ROOT_PASSWORD: 'root'
ports:
- '33066:3306'
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 10s
--health-retries 10
memcached:
image: 'memcached'
ports: [ '11211:11211' ]
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: 'Set up Ruby'
uses: ruby/setup-ruby@v1
env:
ImageOS: ubuntu20
- name: Read .tool-versions
uses: marocchino/tool-versions-action@v1
id: readToolVersions
- name: Set up Node.js ${{ steps.readToolVersions.outputs.nodejs }}
uses: actions/setup-node@v4
with:
node-version: ${{ steps.readToolVersions.outputs.nodejs }}
- name: 'Setup OS'
run: |
sudo apt-get -qq update
sudo apt-get install sphinxsearch
echo "ruby version: $(ruby -v)"
echo "bundle version: $(bundle -v)"
echo "node version: $(node -v)"
echo "yarn version: $(yarn -v)"
- name: 'create cache key'
run: cp Gemfile.lock Gemfile.lock.backup
- uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-ruby-bundle-${{ hashFiles('**/Gemfile.lock.backup') }}
restore-keys: |
${{ runner.os }}-ruby-bundle-
- name: 'Bundle install'
run: |
bundle install --jobs 4 --retry 3 --path vendor/bundle
- name: 'Make changes to Gemfile.lock transparent'
run: git diff Gemfile.lock || true
- uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node_modules-
- name: 'Yarn install'
run: |
yarn install --frozen-lockfile
- name: 'Run Webpacker'
run: |
bundle exec rake webpacker:compile
- name: 'Rubocop'
run: |
bundle exec rake rubocop
- name: 'Run db migrations'
run: |
bundle exec rake db:migrate
- name: 'Main Specs without features'
run: |
bundle exec rake ci:setup:env spec:without_features
- name: 'Sphinx'
run: |
bundle exec rake ci:setup:env spec:sphinx
- name: 'Features'
run: |
bundle exec rake ci:setup:env spec:features:lenient
- name: 'Make capybara output downloadable'
uses: actions/upload-artifact@v4
if: always()
with:
name: capybara-output
path: |
tmp/capybara
notify_statuscope:
uses: ./.github/workflows/notify-statuscope.yml
needs: [ build ]
if: ( success() || failure() ) && ( github.ref_name == 'master' )
with:
repository: 'hitobito'
test_result: ${{ needs.build.result == 'success' }}
secrets:
HEARTBEAT_URL: ${{ secrets.HEARTBEAT_URL }}
HEARTBEAT_TOKEN: ${{ secrets.HEARTBEAT_TOKEN }}