-
Notifications
You must be signed in to change notification settings - Fork 3
39 lines (33 loc) · 1.15 KB
/
test.yml
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
name: Tests
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened, auto_merge_enabled]
# Allow parallel jobs on `main`, so that each commit is tested. For PRs, run only the latest commit.
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
name: Node.js ${{ matrix.node }}
strategy:
fail-fast: true
matrix:
node: [20, 18]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm i
#replicating calesi folder structure
- run: cd .. && mkdir calesi
- run: cd ../calesi && mkdir plugins && cd plugins && mkdir attachments
- run: cp -r ./* ../calesi/plugins/attachments
- run: cd ../calesi && git clone https://github.com/cap-js/incidents-app.git && cd incidents-app && npm install --save ../plugins/attachments/ && cp -r xmpls/attachments.cds ./db && npm i
- run: cd ../calesi/plugins/attachments && npm run test
env:
FORCE_COLOR: true
- run: rm calesi