Skip to content

Commit

Permalink
add qg
Browse files Browse the repository at this point in the history
  • Loading branch information
GiovanaNarciso committed Jul 19, 2024
1 parent 609b530 commit 22b972e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Pull Request
on: [pull_request]
jobs:
run_tests:
name: "Run Tests"
runs-on: ubuntu-latest
steps:
- run: echo "Running build and test for ${{ github.ref }} branch"
- name: Check out repository code
uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/setup-node@v2
with:
node-version: "14"
- name: Installing dependencies
run: make install

- name: Quality Gate - Unit Test
run: true

0 comments on commit 22b972e

Please sign in to comment.