We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 34e59bf + 5bd0d56 commit 124073dCopy full SHA for 124073d
.github/workflows/test.yml
@@ -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