Stop calling Webpacker in full-stack tests (#30763)
parent
556d409780
commit
8098d27f84
|
@ -285,9 +285,13 @@ jobs:
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: './public'
|
path: './'
|
||||||
name: ${{ github.sha }}
|
name: ${{ github.sha }}
|
||||||
|
|
||||||
|
- name: Expand archived asset artifacts
|
||||||
|
run: |
|
||||||
|
tar xvzf artifacts.tar.gz
|
||||||
|
|
||||||
- name: Set up Ruby environment
|
- name: Set up Ruby environment
|
||||||
uses: ./.github/actions/setup-ruby
|
uses: ./.github/actions/setup-ruby
|
||||||
with:
|
with:
|
||||||
|
@ -405,7 +409,7 @@ jobs:
|
||||||
|
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
path: './public'
|
path: './'
|
||||||
name: ${{ github.sha }}
|
name: ${{ github.sha }}
|
||||||
|
|
||||||
- name: Set up Ruby environment
|
- name: Set up Ruby environment
|
||||||
|
|
|
@ -80,9 +80,6 @@ end
|
||||||
RSpec.configure do |config|
|
RSpec.configure do |config|
|
||||||
config.before :suite do
|
config.before :suite do
|
||||||
if streaming_examples_present?
|
if streaming_examples_present?
|
||||||
# Compile assets
|
|
||||||
Webpacker.compile
|
|
||||||
|
|
||||||
# Start the node streaming server
|
# Start the node streaming server
|
||||||
streaming_server_manager.start(port: STREAMING_PORT)
|
streaming_server_manager.start(port: STREAMING_PORT)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue