feat(): separated private and public tests

This commit is contained in:
JJ-Cro
2025-03-15 12:05:51 +01:00
parent 15931f6ed5
commit 51d9131f17
4 changed files with 11 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ on:
jobs:
build:
name: "Build & Test"
name: "Build, Lint & Test"
runs-on: ubuntu-latest
steps:
@@ -32,8 +32,11 @@ jobs:
- name: Check Lint
run: npm run lint
- name: Test
run: npm run test
- name: Run Public Tests
run: npm run test:public
- name: Run Private Tests
run: npm run test:private
env:
API_KEY_COM: ${{ secrets.API_KEY_COM }}
API_SECRET_COM: ${{ secrets.API_SECRET_COM }}