Skip to content

Commit

Permalink
chore: add test-compare action (#4737)
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGSS committed May 10, 2023
1 parent 8a42b8c commit 07267da
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test-compare.yml
@@ -0,0 +1,18 @@
name: Test compare
on:
pull_request:
types: [opened, reopened, synchronize, labeled]

jobs:
run:
if: contains(github.event.pull_request.labels.*.name, 'test-compare')
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Test compare
uses: nearform-actions/github-action-test-compare@v1
with:
label: test-compare
testCommand: 'npm run test:ci'

0 comments on commit 07267da

Please sign in to comment.