forked from NangoHQ/nango
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (38 loc) · 1.22 KB
/
tests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Run Unit & Integration Tests
on:
push:
branches:
- master
- staging/**
pull_request:
concurrency:
group: tests-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm run build:hosted
- run: npm run test:unit
- run: npm run test:integration
- name: Make sure flows.yaml is compiled
run: |
node ./scripts/flows.js
REPO_DIRTY=$(git status --short)
if [[ ! -z "$REPO_DIRTY" ]]; then
git diff
echo ""
echo -e "\r⛔️ flows.yaml hasn't been compiled, please run:"
echo -e "node ./scripts/flows.js"
exit 1
fi