-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (40 loc) · 1.72 KB
/
rspec.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
name: Run RSpec tests
on: [push]
jobs:
run-rspec-tests:
runs-on: ubuntu-latest
env:
RAILS_ENV: test
VAPID_PUBLIC_KEY: BCUWtDYeou4CLLwWUu44NylAkAkPYNobTJ7wuWhvjBb0YF4JhJAT_GeUrOjJvoXvcTO4ehmeCHyP0QH2mS5cyj4 # testing only
VAPID_PRIVATE_KEY: WE83Oc3c1GaC08gcEM2YKddtTpx0DdrjEfTHONVqR0s # testing only
SWAY_DATABASE_PASSWORD: testing123! # testing only
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Ruby and install gems
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3.5"
bundler-cache: true
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22.11.0"
cache: "npm"
- name: Install JS dependencies
run: npm ci --legacy-peer-deps
- name: Precompile assets
run: npm run build
- name: Set up database
run: | # multi-line run command: https://stackoverflow.com/a/66809682/6410635
bundle exec rails db:create
bundle exec rails db:migrate
bundle exec rails db:schema:load
bundle exec rails db:seed
- name: Set up certs
run: | # multi-line run command: https://stackoverflow.com/a/66809682/6410635
mv config/ssl/github-cert.pem config/ssl/cert.pem
mv config/ssl/github-key.pem config/ssl/key.pem
- name: Run tests
run: | # multi-line run command: https://stackoverflow.com/a/66809682/6410635
bundle exec rspec