-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (54 loc) · 1.57 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
name: Test
on: [push]
env:
RAILS_ENV: test
jobs:
tests:
name: Run rspec and rubocop
runs-on: ubuntu-latest
env:
RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }}
services:
postgres:
image: postgres:13.1-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports:
- 5432:5432
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
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install gems
run: |
bundle config path vendor/bundle
bundle install --jobs 20 --retry 3
- name: Install yarn
run: npm install yarn -g
- name: Install node.js dependencies
run: yarn install
- name: Set up test database
run: bin/rails db:prepare
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/test
- name: Report schema version
run: bin/rails db:version
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/test
- name: Compile assets
run: bin/rails assets:precompile
- name: Run rubocop
run: bundle exec rubocop
- name: Run tests
run: bundle exec rspec
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/test