Skip to content

Commit 5c19982

Browse files
Merge pull request #127 from MarcelDiessner/feature/syntaxChecking
Patch Feature/syntaxChecking
2 parents 64988ac + 7cc4968 commit 5c19982

1 file changed

Lines changed: 12 additions & 6 deletions

File tree

.github/workflows/syntaxCheckPullRequest.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,22 @@ on:
66
jobs:
77
setup-matrix:
88
runs-on: ubuntu-latest
9+
env:
10+
PR_NUMBER: ${{github.event.number}}
11+
912
steps:
1013
- name: Checkout playbooks
1114
uses: actions/checkout@v2
12-
with:
13-
repository: devonfw-tutorials/tutorials
14-
path: playbooks
15+
- name: Install node environment
16+
uses: actions/setup-node@v2-beta
17+
- name: npm install
18+
run: npm install
1519
- name: Select Changed Files
1620
id: changedfiles
17-
run:
18-
changedFiles = `node selectChangedFiles.js`
19-
echo ::set-output name=all::$changedFiles
21+
run: |
22+
changedFiles=`node selectChangedFiles.js`
23+
echo "${changedFiles}"
24+
echo "::set-output name=all::$changedFiles"
2025
- name: Setup matrix combinations
2126
id: setup-matrix-combinations
2227
run: |
@@ -42,6 +47,7 @@ jobs:
4247
uses: actions/checkout@v2
4348
with:
4449
repository: devonfw-tutorials/tutorial-compiler
50+
path: tutorial-compiler
4551

4652
- name: Checkout playbooks
4753
uses: actions/checkout@v2

0 commit comments

Comments
 (0)