Skip to content

Commit 124073d

Browse files
committed
Merge branch 'development' of https://github.com/tcet-opensource/erp-backend into 95-create_Contribution.md
2 parents 34e59bf + 5bd0d56 commit 124073d

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/test.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Testing Services
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
- development
8+
9+
10+
env:
11+
TOKEN_SECRET: ${{ secrets.TOKEN_SECRET }}
12+
DB_URL: ${{ secrets.DB_URL }}
13+
14+
permissions:
15+
contents: read
16+
17+
jobs:
18+
test:
19+
name: Testing files
20+
timeout-minutes: 30
21+
runs-on: ubuntu-latest
22+
steps:
23+
- name: Checkout
24+
uses: actions/checkout@v3
25+
- name: Set up Node
26+
uses: actions/setup-node@v3
27+
with:
28+
node-version: '18'
29+
cache: npm
30+
- name: Installation
31+
run: npm ci
32+
- name: Running Tests
33+
run: npm run test

0 commit comments

Comments
 (0)