-
Notifications
You must be signed in to change notification settings - Fork 109
109 lines (91 loc) · 3.6 KB
/
postgres.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
name: Tests - PostgreSQL
on: [push, pull_request]
jobs:
postgresql:
runs-on: ubuntu-20.04
services:
# Postgres installation
db:
image: postgres
env:
# Latest version of Postgres has increased security. We can use the default
# user/password in this testing scenario though so use the following env
# variable to bypass this changes:
# https://github.com/docker-library/postgres/issues/681
POSTGRES_HOST_AUTH_METHOD: trust
ports: ['5432:5432']
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
# Define environment variables for Postgres and Rails
env:
RAILS_ENV: test
DATABASE_URL: postgres://postgres:@localhost:5432/roadmap_test
steps:
# Checkout the repo
- uses: actions/checkout@v3
# Install Ruby and run bundler
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
bundler-cache: true
## - run: echo 'NODE_OPTIONS="--openssl-legacy-provider"' >> $GITHUB_ENV
## /home/runner/runners/2.301.1/externals/node12/bin/node: --openssl-legacy-provider is not allowed in NODE_OPTIONS
# Install Node
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
# Install the Postgres developer packages
- name: 'Install Postgresql Packages'
run: |
sudo apt-get update
sudo apt-get install libpq-dev
# Copy all of the example configs over
- name: 'Setup Default Configuration'
run: |
cp config/database.yml.sample config/database.yml
cp config/initializers/contact_us.rb.example config/initializers/contact_us.rb
cp config/initializers/wicked_pdf.rb.example config/initializers/wicked_pdf.rb
cp .env.postgresql .env
# Stub out the Rails credentials file so that we can start the Rails app
- name: 'Setup Credentials'
env:
EDITOR: "cat"
run: |
# generate a default credential file and key
export RAILS_MASTER_KEY=$(bundle exec rails secret | head -c 32) >> $GITHUB_ENV
echo $RAILS_MASTER_KEY > config/master.key
echo "RAILS_MASTER_KEY length: ${#RAILS_MASTER_KEY}"
cp config/credentials.yml.postgresql config/credentials.yml
bundle exec rails credentials:edit
# Step to print test_variable from credentials.yml
- name: Print test_variable from credentials.yml
run: |
echo "test_variable: $(bundle exec rails runner 'puts Rails.application.credentials.test_variable')"
# Set the path to the wkhtmltopdf executable
- name: 'Determine wkhtmltopdf location'
run: echo "WICKED_PDF_PATH=`bundle exec which wkhtmltopdf`" >> $GITHUB_ENV
# Run yarn install for JS dependencies
- name: 'Yarn Install'
run: |
yarn install
# Initialize the DB
- name: 'Setup Test DB'
run: |
bundle exec rails db:setup RAILS_ENV=test
bundle exec rails db:migrate RAILS_ENV=test
# Prebuild the CSS, JS and image assets
- name: 'Compile Assets'
run: bundle exec rails assets:precompile
# Run the unit and functional tests
- name: 'Run Rspec Unit and Functional Tests'
run: |
bundle exec rspec spec/models/ spec/policies/ spec/services/ spec/helpers/
bundle exec rspec spec/controllers/ spec/presenters/ spec/requests/ spec/views
bundle exec rspec spec/mixins/
# Run the time consuming integration tests (using Chrome headless browser)
- name: 'Run Integration Tests'
run: bundle exec rspec spec/features/