Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Commit

Permalink
Add code quality github action.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbouder committed Feb 6, 2024
1 parent 090288a commit ccbe3d9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/code-quality.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Code Quality Checks

on:
pull_request:
branches: [main]

jobs:
run-test-checks:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Node environment
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Install dependencies
run: npm ci

- name: Run Jest tests with coverage
run: npm run test

0 comments on commit ccbe3d9

Please sign in to comment.