chore: more logging output for the LambdaTests #35
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
name: LambdaTest (HyperExecute) | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
jobs: | |
HyperExecute-Playwright: | |
runs-on: windows-latest | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Starting CI testing | |
shell: bash | |
env: | |
CI: true | |
LT_USERNAME: ${{ secrets.LT_USERNAME }} | |
LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }} | |
run: | | |
echo "STEP 1 ) Download project" | |
git clone https://github.com/josdejong/mathjs | |
cd mathjs | |
echo "STEP 2) Download HyperExecute" | |
curl https://downloads.lambdatest.com/hyperexecute/windows/hyperexecute.exe -o hyperexecute.exe | |
echo "STEP 3) Run tests using HyperExecute" | |
./hyperexecute --user $LT_USERNAME --key $LT_ACCESS_KEY --config test/browser-test-config/lambdatest-hyperexecute-config.yaml |