chore: format-after-version #1528
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: ForgeRock Pull Request CI | |
on: | |
pull_request: | |
env: | |
NX_CLOUD_ENCRYPTION_KEY: ${{ secrets.NX_CLOUD_ENCRYPTION_KEY }} | |
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} | |
NX_CLOUD_DISTRIBUTED_EXECUTION: true | |
jobs: | |
pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v4 | |
with: | |
run_install: false | |
- uses: actions/setup-node@v4 | |
id: cache | |
with: | |
node-version: '20.10.0' | |
cache: 'pnpm' | |
- run: pnpm install --frozen-lockfile | |
# This line enables distribution | |
# The "--stop-agents-after" is optional, but allows idle agents to shut down once the "e2e-ci" targets have been requested | |
- run: pnpm dlx nx-cloud start-ci-run --distribute-on="5 linux-medium-js" --stop-agents-after="e2e-ci" --verbose | |
- run: pnpm exec playwright install | |
- uses: nrwl/nx-set-shas@v4 | |
# This line is needed for nx affected to work when CI is running on a PR | |
- run: git branch --track develop origin/develop | |
- run: pnpm exec nx-cloud record -- nx format:check --verbose | |
- run: pnpm exec nx affected -t build lint test e2e-ci --verbose | |
- uses: actions/upload-artifact@v4 | |
if: ${{ !cancelled() }} | |
with: | |
name: playwright-report | |
path: | | |
./dist/.playwright/** | |
./dist/** | |
retention-days: 30 |