Skip to content

Commit

Permalink
add code-pushup to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
BioPhoton committed Sep 15, 2024
1 parent 32ce5a5 commit 8207608
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/code-pushup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Code PushUp

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: Code PushUp
# 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
- 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 code-pushup --

0 comments on commit 8207608

Please sign in to comment.