We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e291c21 commit bf6d925Copy full SHA for bf6d925
.github/workflows/test.yml
@@ -0,0 +1,19 @@
1
+name: LeaseFlow API Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Use Node.js
15
+ uses: actions/setup-node@v3
16
+ with:
17
+ node-version: '18'
18
+ - run: npm ci
19
+ - run: npm test
0 commit comments