deps(deps-dev): bump @testcontainers/elasticsearch from 11.11.0 to 11… #159
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: node-es-transformer CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| name: Lint & Type Check | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Node.js 22.x | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22.x' | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Lint | |
| run: yarn lint | |
| - name: Type check | |
| run: yarn test:types | |
| test-single-version: | |
| runs-on: ubuntu-latest | |
| needs: checks | |
| strategy: | |
| matrix: | |
| es-version: ['8.17.0', '8.19.11', '9.0.0', '9.3.0'] | |
| fail-fast: false | |
| name: Node 22.x / ES ${{ matrix.es-version }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Node.js 22.x | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22.x' | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Build | |
| run: yarn build | |
| - name: Run tests against Elasticsearch ${{ matrix.es-version }} | |
| run: yarn test | |
| env: | |
| ES_VERSION: ${{ matrix.es-version }} | |
| test-cross-version: | |
| runs-on: ubuntu-latest | |
| needs: checks | |
| name: Node 22.x / Cross-Version (ES 8.x → 9.x) | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Node.js 22.x | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22.x' | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Build | |
| run: yarn build | |
| - name: Run cross-version tests (ES 8.17.0 → 9.3.0) | |
| run: yarn test:cross-version |