Upgrades Angular 14 to 15 (merging angular-update into dev; incorpora… #212
This file contains hidden or 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: Tests | |
on: | |
push: | |
branches: [main, dev, angular-update] | |
pull_request: | |
branches: [main, dev, angular-update] | |
jobs: | |
testRigor: | |
runs-on: ubuntu-latest | |
env: | |
MIFOS_TEST_SUITE_ID: ${{secrets.MIFOS_TEST_SUITE_ID}} | |
MIFOS_AUTH_TOKEN: ${{secrets.MIFOS_AUTH_TOKEN}} | |
LOCALHOST_URL: ${{secrets.LOCALHOST_URL}} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 22 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '22.9.0' | |
- name: Install testRigor Command Line | |
run: | | |
npm install -g --verbose testrigor-cli | |
- name: Run testRigor tests | |
run: | | |
echo "$MIFOS_TEST_SUITE_ID" | |
chmod +x ./e2e/testRigor/run_testrigor_tests.sh && ./e2e/testRigor/run_testrigor_tests.sh |