Skip to content

feat: DORA metrics

feat: DORA metrics #3

Workflow file for this run

name: Test (Unit)
on:
pull_request:
types: [synchronize, opened, reopened]
push:
branches:
- main
- production
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run Unit Tests
run: npm run test:unit