remove system tests, nothing to see
CI / scan_ruby (push) Successful in 19s
CI / scan_js (push) Successful in 14s
CI / lint (push) Successful in 21s
CI / test (push) Successful in 29s

This commit is contained in:
2026-01-26 23:50:19 +01:00
parent de52fe9b93
commit b54db723c5
+40 -40
View File
@@ -98,43 +98,43 @@ jobs:
# REDIS_URL: redis://localhost:6379/0
run: bin/rails test
system-test:
runs-on: ubuntu-latest
# services:
# redis:
# image: valkey/valkey:8
# ports:
# - 6379:6379
# options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install SQLite3 CLI
run: sudo apt-get update && sudo apt-get install -y sqlite3
- name: Set up database
env:
RAILS_ENV: test
run: bin/rails db:create db:migrate
- name: Run System Tests
env:
RAILS_ENV: test
# RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }}
# REDIS_URL: redis://localhost:6379/0
run: bin/rails test:system
- name: Keep screenshots from failed system tests
uses: actions/upload-artifact@v4
if: failure()
with:
name: screenshots
path: ${{ github.workspace }}/tmp/screenshots
if-no-files-found: ignore
# system-test:
# runs-on: ubuntu-latest
#
# # services:
# # redis:
# # image: valkey/valkey:8
# # ports:
# # - 6379:6379
# # options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
# steps:
# - name: Checkout code
# uses: actions/checkout@v6
#
# - name: Set up Ruby
# uses: ruby/setup-ruby@v1
# with:
# bundler-cache: true
#
# - name: Install SQLite3 CLI
# run: sudo apt-get update && sudo apt-get install -y sqlite3
#
# - name: Set up database
# env:
# RAILS_ENV: test
# run: bin/rails db:create db:migrate
#
# - name: Run System Tests
# env:
# RAILS_ENV: test
# # RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }}
# # REDIS_URL: redis://localhost:6379/0
# run: bin/rails test:system
#
# - name: Keep screenshots from failed system tests
# uses: actions/upload-artifact@v4
# if: failure()
# with:
# name: screenshots
# path: ${{ github.workspace }}/tmp/screenshots
# if-no-files-found: ignore