Skip to content

Commit

Permalink
do not redirect ouput to a log file
Browse files Browse the repository at this point in the history
and be more selective in uploading logs
  • Loading branch information
geoknee committed Oct 12, 2023
1 parent 36a5208 commit ab07765
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ts-rpc-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ jobs:
run: make ui/build

- name: Run go-nitro RPC servers with GUI
run: go run ./cmd/start-rpc-servers -ui=true &> output1.log &
run: go run ./cmd/start-rpc-servers -ui=true &> output.log &

- name: Run Create Channels script
# TODO: We could write a test specific script that creates channels and checks the results
run: npx ts-node ./scripts/client-runner.ts create-channels -w 300000 &> output2.log
run: npx ts-node ./scripts/client-runner.ts create-channels -w 300000
working-directory: packages/nitro-rpc-client

- name: Archive logs
if: always()
uses: actions/upload-artifact@v2
with:
name: logs
path: ./**/*.log
name: rpc server logs
path: ./output.log

0 comments on commit ab07765

Please sign in to comment.