chore(deps-dev): bump @testing-library/react from 12.1.5 to 16.3.2 #694
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: CI | |
| permissions: | |
| contents: read | |
| actions: read | |
| env: | |
| NPM_CONFIG_PROGRESS: 'false' | |
| NPM_CONFIG_LOGLEVEL: warn | |
| on: | |
| push: | |
| branches: [main, canary] | |
| pull_request: | |
| branches: [main, canary] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| node-version: ['18.20', '20.18', '22.11'] | |
| os: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install dependencies and build | |
| uses: ./.github/actions/install-and-build | |
| with: | |
| os: ${{ matrix.os }} | |
| node-version: ${{ matrix.node-version }} | |
| - name: Lint and test | |
| uses: ./.github/actions/lint-and-test | |
| with: | |
| os: ${{ matrix.os }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Test built wrapper app | |
| uses: ./.github/actions/test-app | |
| with: | |
| os: ${{ matrix.os }} | |
| - name: Test built functions | |
| uses: ./.github/actions/test-functions | |
| with: | |
| os: ${{ matrix.os }} | |
| # Single status check that represents all matrix jobs | |
| ci-status: | |
| name: CI Status | |
| needs: test | |
| if: always() | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check matrix job results | |
| run: | | |
| if [ "${{ needs.test.result }}" != "success" ]; then | |
| echo "Matrix jobs failed or were cancelled" | |
| exit 1 | |
| fi | |
| echo "All matrix jobs passed!" |