@@ -32,16 +32,15 @@ jobs:
32
32
- name : Update apt
33
33
env :
34
34
DEBIAN_FRONTEND : noninteractive
35
- run :
36
- sudo apt-get update -qq -o Acquire::Retries=3
35
+ run : sudo apt-get update -qq -o Acquire::Retries=3
37
36
38
37
- name : Install libvips
39
38
env :
40
39
DEBIAN_FRONTEND : noninteractive
41
40
run :
42
41
# we only need the library
43
42
sudo apt-get install --fix-missing -qq -o Acquire::Retries=3
44
- libvips
43
+ libvips
45
44
46
45
- name : Setup Ruby and install gems
47
46
uses : ruby/setup-ruby@v1
52
51
uses : actions/setup-node@v3
53
52
with :
54
53
node-version : 18
55
- cache : ' yarn'
54
+ cache : " yarn"
56
55
57
56
- name : Install Node dependencies
58
57
run : yarn install
@@ -90,16 +89,15 @@ jobs:
90
89
- name : Update apt
91
90
env :
92
91
DEBIAN_FRONTEND : noninteractive
93
- run :
94
- sudo apt-get update -qq -o Acquire::Retries=3
92
+ run : sudo apt-get update -qq -o Acquire::Retries=3
95
93
96
94
- name : Install libvips
97
95
env :
98
96
DEBIAN_FRONTEND : noninteractive
99
97
run :
100
98
# we only need the library
101
99
sudo apt-get install --fix-missing -qq -o Acquire::Retries=3
102
- libvips
100
+ libvips
103
101
104
102
- name : Install Firefox
105
103
uses : browser-actions/setup-firefox@latest
@@ -113,7 +111,7 @@ jobs:
113
111
uses : actions/setup-node@v3
114
112
with :
115
113
node-version : 18
116
- cache : ' yarn'
114
+ cache : " yarn"
117
115
118
116
- name : Allow Ruby process to access port 80
119
117
run : sudo setcap 'cap_net_bind_service=+ep' `which ruby`
@@ -134,7 +132,7 @@ jobs:
134
132
- name : Run Tests
135
133
env :
136
134
HEADLESS : true
137
- run : bundle exec rspec
135
+ run : bundle exec rspec --exclude-pattern "spec/furniture/journal/**"
138
136
- name : Upload RSpec Screenshots
139
137
uses : actions/upload-artifact@v2
140
138
if : failure()
@@ -160,7 +158,7 @@ jobs:
160
158
uses : actions/setup-node@v3
161
159
with :
162
160
node-version : 18
163
- cache : ' yarn'
161
+ cache : " yarn"
164
162
165
163
- name : Install Node dependencies
166
164
run : yarn install
0 commit comments