feat: update all clients #206
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: Integration tests for Typescript | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| paths: # run if any of below was changed | |
| - 'clients/typescript/**' | |
| - 'packages/jsii/**' | |
| - 'tests/integration/typescript/**' | |
| permissions: | |
| actions: read | |
| contents: read | |
| jobs: | |
| integration_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install test deps (due to relative paths) | |
| run: npm ci | |
| working-directory: tests/integration/typescript | |
| - name: Cache testing env file | |
| uses: actions/cache@v4 | |
| id: testing-env-cache | |
| with: | |
| path: tests/.env | |
| key: ${{ runner.os }}-testing-env-${{ hashFiles('tests/.env') }} | |
| - if: ${{ steps.testing-env-cache.outputs.cache-hit != 'true' }} | |
| name: Prepare environment file | |
| env: | |
| TESTING_ENV_FILE_CONTENT: ${{ secrets.TESTING_ENV_FILE_CONTENT }} | |
| run: echo $TESTING_ENV_FILE_CONTENT | base64 --decode > tests/.env | |
| - name: Run integration tests | |
| run: npm run test | |
| working-directory: tests/integration/typescript |