Skip to content

Commit 19c9cf1

Browse files
Merge pull request #287 from derochs/main
Extend Workflows
2 parents 0945379 + 5ae8854 commit 19c9cf1

4 files changed

Lines changed: 38 additions & 0 deletions

File tree

.github/workflows/linuxMain.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818

1919
- uses: actions/setup-node@v2-beta
2020

21+
- name: install Pandoc
22+
run: sudo apt install pandoc
23+
24+
- name: install AsciiDoctor
25+
run: sudo apt install asciidoctor
26+
2127
- name: install TS
2228
run: npm install typescript
2329

.github/workflows/linuxPullRequest.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ jobs:
1111

1212
- uses: actions/setup-node@v2-beta
1313

14+
- name: install Pandoc
15+
run: sudo apt install pandoc
16+
17+
- name: install AsciiDoctor
18+
run: sudo apt install asciidoctor
19+
1420
- name: install TS
1521
run: npm install typescript
1622

.github/workflows/windowsMain.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,19 @@ jobs:
1818

1919
- uses: actions/setup-node@v2-beta
2020

21+
- name: install Pandoc
22+
uses: crazy-max/ghaction-chocolatey@v1
23+
with:
24+
args: install pandoc
25+
26+
- name: install Ruby
27+
uses: crazy-max/ghaction-chocolatey@v1
28+
with:
29+
args: install ruby
30+
31+
- name: install AsciiDoctor
32+
run: gem install asciidoctor
33+
2134
- name: install TS
2235
run: npm install typescript
2336

.github/workflows/windowsPullRequest.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,19 @@ jobs:
1111

1212
- uses: actions/setup-node@v2-beta
1313

14+
- name: install Pandoc
15+
uses: crazy-max/ghaction-chocolatey@v1
16+
with:
17+
args: install pandoc
18+
19+
- name: install Ruby
20+
uses: crazy-max/ghaction-chocolatey@v1
21+
with:
22+
args: install ruby
23+
24+
- name: install AsciiDoctor
25+
run: gem install asciidoctor
26+
1427
- name: install TS
1528
run: npm install typescript
1629

0 commit comments

Comments
 (0)