Skip to content

Merge pull request #31 from bhalperin/ng21 #116

Merge pull request #31 from bhalperin/ng21

Merge pull request #31 from bhalperin/ng21 #116

Workflow file for this run

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
- name: ===== Compile generated Prisma client =====
run: npx tsc -p libs/prisma/tsconfig.generated.json
- name: ===== List generate Prisma client files =====
run: ls -la libs/prisma/generated/prisma/client
# 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 --verbose
- name: ===== Run ui e2e tests =====
run: yarn run e2e:ui --verbose