-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (38 loc) · 874 Bytes
/
main.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
name: Rails Tests
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Rails tests
strategy:
matrix:
ruby:
- '3.2.2'
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18.16.0
cache: yarn
- name: Install packages
run: yarn install --pure-lockfile
- name: Setup test database
env:
RAILS_ENV: test
run: bin/rails db:setup
- name: Assets
run: bin/rails assets:precompile
- name: Run tests
run: bin/rails test
- name: Run rspec tests
run: bin/rails spec