Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🧹 Journal: Excludes specs from primary GH workflow #2174

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading