Files
METARIUS/.gitea/workflows/test.yaml
Luke Else 76af341036
All checks were successful
Run Unit and Integration Tests / test (push) Successful in 1m3s
Run Unit and Integration Tests / test (pull_request) Successful in 1m2s
#4 Added pnpm install to workflow
2025-06-29 13:57:56 +01:00

28 lines
516 B
YAML

name: Run Unit and Integration Tests
on:
push:
branches:
- '**'
pull_request:
branches:
- "main"
- "development"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Install pnpm
run: npm install -g pnpm
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test