-
Notifications
You must be signed in to change notification settings - Fork 18
46 lines (37 loc) · 1015 Bytes
/
windowsMain.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
40
41
42
43
44
45
46
name: CI Windows
on:
push:
branches: [ main ]
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
default: '--debug'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: '16'
- name: install Pandoc
uses: crazy-max/ghaction-chocolatey@v1
with:
args: install pandoc
- name: install Ruby
uses: crazy-max/ghaction-chocolatey@v1
with:
args: install ruby
- name: install AsciiDoctor
run: gem install asciidoctor
- name: install TS
run: npm install -g typescript
- name: npm install
run: npm install
- name: run checkout.ps1
run: .\checkout.ps1
- name: run buildRun.ps1 ${{ github.event.inputs.logLevel }}
run: .\buildRun.ps1 ${{ github.event.inputs.logLevel }}