forked from joemasilotti/railsdevs.com
-
Notifications
You must be signed in to change notification settings - Fork 4
116 lines (97 loc) · 2.68 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
105
106
107
108
109
110
111
112
113
114
115
116
name: CI
on:
pull_request:
branches:
- '*'
push:
branches:
- main
concurrency: ci-${{ github.ref }}
jobs:
install-cache:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
node-version: [14]
steps:
- name: Checkout Commit
uses: actions/checkout@v2
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Cache yarn dependencies
uses: actions/cache@v2
id: cache-dependencies
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: |
yarn install --force --non-interactive
test:
runs-on: ubuntu-latest
needs: install-cache
timeout-minutes: 10
services:
db:
image: postgres:10.13
ports: ["5432:5432"]
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
redis:
image: redis
ports:
- "6379:6379"
steps:
- name: Checkout Commit
uses: actions/checkout@v2
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Restore yarn dependencies
uses: actions/cache@v2
id: cache-dependencies
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Standardize
run: bundle exec standardrb
- name: erb-lint
run: bundle exec erblint --lint-all
- name: i18n-tasks
run: bundle exec i18n-tasks health
- name: Run tests
env:
RAILS_ENV: test
DATABASE_URL: postgres://postgres:password@localhost:5432/hirethepivot_test
RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }}
TZ: America/New_York
run: |
bin/rails javascript:build
bin/rails css:build
bin/rails db:create
bin/rails db:schema:load
bin/rails test --fail-fast
bin/rails test:system