Skip to content

Adding a badge

Adding a badge #2

Workflow file for this run

name: 📋 Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: 📦 Checkout Repository
uses: actions/checkout@v4
- name: 🏗️ Setup Node.js Environment
uses: actions/setup-node@v3
with:
cache: npm
cache-dependency-path: package-lock.json
node-version-file: .nvmrc
- name: 🏗️ Setup project
run: npm ci
- name: 🛠️ Compile check
run: npm run compile
- name: 📋 Run tests
run: npm run test