Skip to content

Commit

Permalink
ci: add workflow to run code-pushup
Browse files Browse the repository at this point in the history
  • Loading branch information
matejchalk committed Jun 18, 2024
1 parent 59dfae3 commit 315714a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/code-pushup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Code PushUp

on:
push:
branches: [master]
pull_request:
branches: [master]

permissions:
contents: read
actions: read
pull-requests: write

jobs:
code-pushup:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: npm
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Code PushUp
uses: code-pushup/github-action@v0

0 comments on commit 315714a

Please sign in to comment.