chore: update Nx #208
Workflow file for this run
This file contains 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: | |
branches: | |
- main | |
pull_request: | |
env: | |
API_URL: http://localhost:3000/api | |
CLOAK_KEYCHAIN: 'v1.aesgcm256.6e1ba298.pf2UU5kKDxFWNgA6.VoV2c9xUARRchBZiY6iHlCc5' | |
CLOAK_MASTER_KEY: 'k1.aesgcm256.cs8BOCfbvuH-WwZDwqZ47zcLw0K8OlUGFW1JaXLAd78=' | |
DATABASE_URL: postgresql://pubkey-stack:pubkey-stack@localhost:5432/pubkey-stack?schema=public | |
DATABASE_PROVISION: true | |
PORT: 3000 | |
jobs: | |
main: | |
name: Nx Cloud - Main Job | |
uses: nrwl/ci/.github/workflows/[email protected] | |
with: | |
node-version: 20.10.0 | |
main-branch-name: main | |
number-of-agents: 3 | |
init-commands: | | |
pnpm prisma generate | |
pnpm nx-cloud start-ci-run --stop-agents-after="build" --agent-count=3 | |
parallel-commands: | | |
pnpm nx-cloud record -- pnpm nx format:check | |
parallel-commands-on-agents: | | |
pnpm nx affected --target=lint --parallel=3 | |
pnpm nx affected --target=test --parallel=3 --ci --code-coverage --exclude anchor | |
pnpm nx affected --target=build --parallel=3 | |
agents: | |
name: Nx Cloud - Agents | |
uses: nrwl/ci/.github/workflows/[email protected] | |
with: | |
node-version: 20.10.0 | |
number-of-agents: 3 | |
install-commands: | | |
pnpm install --frozen-lockfile | |
pnpm prisma generate |