Skip to content

Commit

Permalink
Updates command
Browse files Browse the repository at this point in the history
  • Loading branch information
rosschapman authored and zspencer committed Feb 6, 2024
1 parent 982c4fe commit b1c7c77
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/test-convene-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,15 @@ jobs:
- name: Update apt
env:
DEBIAN_FRONTEND: noninteractive
run:
sudo apt-get update -qq -o Acquire::Retries=3
run: sudo apt-get update -qq -o Acquire::Retries=3

- name: Install libvips
env:
DEBIAN_FRONTEND: noninteractive
run:
# we only need the library
sudo apt-get install --fix-missing -qq -o Acquire::Retries=3
libvips
libvips

- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
Expand All @@ -52,7 +51,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
cache: "yarn"

- name: Install Node dependencies
run: yarn install
Expand Down Expand Up @@ -90,16 +89,15 @@ jobs:
- name: Update apt
env:
DEBIAN_FRONTEND: noninteractive
run:
sudo apt-get update -qq -o Acquire::Retries=3
run: sudo apt-get update -qq -o Acquire::Retries=3

- name: Install libvips
env:
DEBIAN_FRONTEND: noninteractive
run:
# we only need the library
sudo apt-get install --fix-missing -qq -o Acquire::Retries=3
libvips
libvips

- name: Install Firefox
uses: browser-actions/setup-firefox@latest
Expand All @@ -113,7 +111,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
cache: "yarn"

- name: Allow Ruby process to access port 80
run: sudo setcap 'cap_net_bind_service=+ep' `which ruby`
Expand All @@ -134,7 +132,7 @@ jobs:
- name: Run Tests
env:
HEADLESS: true
run: bundle exec rspec
run: bundle exec rspec --exclude-pattern "spec/furniture/journal/**"
- name: Upload RSpec Screenshots
uses: actions/upload-artifact@v2
if: failure()
Expand All @@ -160,7 +158,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
cache: "yarn"

- name: Install Node dependencies
run: yarn install
Expand Down

0 comments on commit b1c7c77

Please sign in to comment.