fix: change pipeline type to 'any' in EmbeddingService for compatibil… #22
Workflow file for this run
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 | |
| on: push | |
| permissions: | |
| actions: read | |
| contents: read | |
| concurrency: | |
| group: enclave-ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| NX_DAEMON: "false" | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: ".nvmrc" | |
| cache: "yarn" | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Set Nx SHAs | |
| uses: nrwl/nx-set-shas@v4 | |
| - name: Run linter | |
| run: npx nx affected -t lint | |
| continue-on-error: true | |
| - name: Run prettier | |
| run: npx prettier --check . | |
| continue-on-error: true | |
| - name: Build libraries | |
| run: npx nx affected -t build | |
| - name: Test libraries | |
| run: npx nx affected -t test --passWithNoTests |