We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3934a0a commit 0e0b2dfCopy full SHA for 0e0b2df
2 files changed
.github/actions/integration-tests/action.yml
@@ -68,6 +68,10 @@ runs:
68
npm install @sap/cds@${{ matrix.cds-version }}
69
npm install
70
71
+ - name: Compile TypeScript to dist
72
+ shell: bash
73
+ run: npm run compile
74
+
75
# HANA Cloud Deployment and binding
76
- name: Set node env for HANA
77
run: echo "NODE_VERSION_HANA=$(echo ${{ inputs.NODE_VERSION }} | tr . _)" >> $GITHUB_ENV
.github/workflows/test.yml
@@ -36,6 +36,7 @@ jobs:
36
node-version: ${{ matrix.node-version }}
37
- run: npm i -g @sap/cds-dk@${{ matrix.cds-version }}
38
- run: npm i
39
+ - run: npm run compile
40
- run: npm run build
41
- run: cd tests/bookshop && npm run build
42
- run: npm run test
0 commit comments