Skip to content

Commit

Permalink
ci: try to escape function
Browse files Browse the repository at this point in the history
  • Loading branch information
strophy committed Oct 31, 2023
1 parent 5388e76 commit 2ce0d37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ jobs:
uses: ./.github/workflows/js-checks.yml
with:
package: ${{ matrix.js-package }}
skip-tests: contains(matrix.js-package, 'platform-test-suite')
install-browsers: contains(matrix.js-package, 'js-dapi-client') || contains(matrix.js-package, 'js-dash-sdk') || contains(matrix.js-package, 'js-dpp') || contains(matrix.js-package, 'platform-test-suite') || contains(matrix.js-package, 'wallet-lib')
skip-tests: ${{ contains(matrix.js-package, 'platform-test-suite') }}
install-browsers: ${{ contains(matrix.js-package, 'js-dapi-client') || contains(matrix.js-package, 'js-dash-sdk') || contains(matrix.js-package, 'js-dpp') || contains(matrix.js-package, 'platform-test-suite') || contains(matrix.js-package, 'wallet-lib') }}

rs-checks:
name: RS Checks
Expand Down

0 comments on commit 2ce0d37

Please sign in to comment.