Bump ts-loader from 6.0.4 to 9.5.7 #654
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: test | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| run-web-tests: | |
| runs-on: ubuntu-latest | |
| env: | |
| CI: ${{ github.event_name == 'push' && 'basic' || 'full' }} | |
| MINIMAL_INTEGRATION_TESTS: ${{ github.event_name == 'push' && 'true' || '' }} | |
| # webpack 4 uses MD4 hashing which is unsupported in OpenSSL 3 (Node 17+). | |
| # Remove once webpack is upgraded to v5. | |
| NODE_OPTIONS: --openssl-legacy-provider | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20' | |
| - run: npm install | |
| - run: npm run check-format | |
| - run: make web_unit | |
| - name: make web_integration | |
| run: | | |
| cd integration_tests_server | |
| npm install | |
| node index.js& | |
| cd .. | |
| make web_integration | |
| env: | |
| INTEGRATION_TESTS_APP_MT1_APP_ID: ${{ secrets.INTEGRATION_TESTS_APP_MT1_APP_ID }} | |
| INTEGRATION_TESTS_APP_MT1_KEY: ${{ secrets.INTEGRATION_TESTS_APP_MT1_KEY }} | |
| INTEGRATION_TESTS_APP_MT1_SECRET: ${{ secrets.INTEGRATION_TESTS_APP_MT1_SECRET }} | |
| INTEGRATION_TESTS_APP_EU_APP_ID: ${{ secrets.INTEGRATION_TESTS_APP_EU_APP_ID }} | |
| INTEGRATION_TESTS_APP_EU_KEY: ${{ secrets.INTEGRATION_TESTS_APP_EU_KEY }} | |
| INTEGRATION_TESTS_APP_EU_SECRET: ${{ secrets.INTEGRATION_TESTS_APP_EU_SECRET }} | |
| run-node-tests: | |
| runs-on: ubuntu-latest | |
| env: | |
| # webpack 4 uses MD4 hashing which is unsupported in OpenSSL 3 (Node 17+). | |
| # Remove once webpack is upgraded to v5. | |
| NODE_OPTIONS: --openssl-legacy-provider | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20' | |
| - run: npm install | |
| - run: npm run check-format | |
| - run: make node_unit | |
| - name: make node_integration | |
| run: | | |
| cd integration_tests_server | |
| npm install | |
| node index.js& | |
| cd .. | |
| make node_integration | |
| env: | |
| INTEGRATION_TESTS_APP_MT1_APP_ID: ${{ secrets.INTEGRATION_TESTS_APP_MT1_APP_ID }} | |
| INTEGRATION_TESTS_APP_MT1_KEY: ${{ secrets.INTEGRATION_TESTS_APP_MT1_KEY }} | |
| INTEGRATION_TESTS_APP_MT1_SECRET: ${{ secrets.INTEGRATION_TESTS_APP_MT1_SECRET }} | |
| INTEGRATION_TESTS_APP_EU_APP_ID: ${{ secrets.INTEGRATION_TESTS_APP_EU_APP_ID }} | |
| INTEGRATION_TESTS_APP_EU_KEY: ${{ secrets.INTEGRATION_TESTS_APP_EU_KEY }} | |
| INTEGRATION_TESTS_APP_EU_SECRET: ${{ secrets.INTEGRATION_TESTS_APP_EU_SECRET }} |