Skip to content

Commit

Permalink
build(action): add quality gate on pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
danprates committed Apr 1, 2023
1 parent 79185b7 commit 7e93221
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/quality-gate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Quality Gate

on:
pull_request:

jobs:
quality-gate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm test

0 comments on commit 7e93221

Please sign in to comment.