FEAT: #12 Added software tests
Some checks failed
Build and Push Development Docker Image / build-and-push (push) Failing after 3m3s
Some checks failed
Build and Push Development Docker Image / build-and-push (push) Failing after 3m3s
This commit is contained in:
@ -2,7 +2,7 @@ name: Build and Push Development Docker Image
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ development ]
|
||||
branches: [ development, chore/software-testing ]
|
||||
|
||||
jobs:
|
||||
build-and-push:
|
||||
|
23
.gitea/workflows/test.yaml
Normal file
23
.gitea/workflows/test.yaml
Normal file
@ -0,0 +1,23 @@
|
||||
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 Dependencies
|
||||
run: npm install
|
||||
|
||||
- name: Run Tests
|
||||
run: npm test
|
Reference in New Issue
Block a user