chore: add monorepo mode to repository #8
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: Code PushUp - Monorepo/Cache | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
NX_NON_NATIVE_HASHER: true | |
permissions: | |
pull-requests: write | |
jobs: | |
code-pushup: | |
runs-on: ubuntu-latest | |
name: Run monorepo layout with caching | |
# ignore PRs from forks, handled by code-pushup-fork.yml | |
if: ${{ !github.event.pull_request.head.repo.fork }} | |
env: | |
CP_SERVER: ${{ secrets.CP_SERVER }} | |
CP_API_KEY: ${{ secrets.CP_API_KEY }} | |
CP_ORGANIZATION: code-pushup | |
CP_PROJECT: cli | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Derive Nx SHAs | |
uses: nrwl/nx-set-shas@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Run Code PushUp action | |
uses: code-pushup/github-action@v0 | |
with: | |
bin: npx nx affected -t code-pushup -- | |
monorepo: nx | |
parallel: 3 |