Remove unused None parameter in test #1277
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# on: | |
# push: | |
# branches: | |
# - main | |
# paths: | |
# - "zk.js/**" | |
# - ".github/workflows/e2e-tests.yml" | |
# - "psp-examples/**" | |
# pull_request: | |
# branches: | |
# - main | |
# paths: | |
# - "zk.js/**" | |
# - ".github/workflows/e2e-tests.yml" | |
# - "psp-examples/**" | |
# types: | |
# - opened | |
# - synchronize | |
# - reopened | |
# - ready_for_review | |
# name: e2e-tests | |
# concurrency: | |
# group: ${{ github.workflow }}-${{ github.ref }} | |
# cancel-in-progress: true | |
# jobs: | |
# e2e-tests: | |
# name: web End-to-end test - | |
# if: github.event.pull_request.draft == false | |
# runs-on: buildjet-16vcpu-ubuntu-2204 | |
# strategy: | |
# matrix: | |
# include: | |
# - test: psp-examples-tests | |
# sub-tests: '[ | |
# "@lightprotocol/streaming-payments:test", | |
# ]' | |
# services: | |
# redis: | |
# image: redis | |
# options: >- | |
# --health-cmd "redis-cli ping" | |
# --health-interval 10s | |
# --health-timeout 5s | |
# --health-retries 5 | |
# ports: | |
# - 6379:6379 | |
# steps: | |
# - name: Checkout sources | |
# uses: actions/checkout@v2 | |
# - name: Setup and build | |
# uses: ./.github/actions/setup-and-build | |
# - name: ${{ matrix.test }} | |
# run: | | |
# source ./scripts/devenv.sh | |
# IFS=', ' read -r -a sub_tests <<< "${{ join(fromJSON(matrix['sub-tests']), ', ') }}" | |
# for subtest in "${sub_tests[@]}" | |
# do | |
# npx nx run $subtest | |
# done |