Created libraries from code that was in app #85
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 | |
| env: | |
| NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| actions: read | |
| contents: read | |
| jobs: | |
| main: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| # Uncomment to allow cloud debugging using cloud vscode | |
| # See https://github.com/fawazahmed0/action-debug-vscode | |
| # - uses: fawazahmed0/action-debug-vscode@main | |
| # This enables task distribution via Nx Cloud | |
| # Run this command as early as possible, before dependencies are installed | |
| # Learn more at https://nx.dev/ci/reference/nx-cloud-cli#npx-nxcloud-startcirun | |
| # - run: npx nx-cloud start-ci-run --distribute-on="3 linux-medium-js" --stop-agents-after="e2e-ci" | |
| # Cache node_modules | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'yarn' | |
| - name: ===== Install dependencies ===== | |
| run: yarn install --frozen-lockfile | |
| - uses: nrwl/nx-set-shas@v4 | |
| - name: ===== Generate Prisma client ===== | |
| run: ./node_modules/.bin/prisma generate --schema=./libs/prisma/src/lib/schema.prisma | |
| # Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud | |
| # - run: yarn nx-cloud record -- echo Hello World | |
| # Nx Affected runs only tasks affected by the changes in this PR/commit. Learn more: https://nx.dev/ci/features/affected | |
| - name: ===== Lint and build ===== | |
| run: yarn run affected | |
| - name: ===== Run ui e2e tests ===== | |
| run: yarn run e2e:ui |