2021-01-06 20:26:25 +01:00
|
|
|
name: Windows Environment Exploration
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
exp:
|
2021-01-06 20:35:25 +01:00
|
|
|
runs-on: windows-latest
|
2021-01-06 20:26:25 +01:00
|
|
|
steps:
|
2021-01-06 20:48:08 +01:00
|
|
|
- name: Set up Node
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: '10.x'
|
|
|
|
|
|
|
|
- name: Set Node options
|
|
|
|
run: echo "NODE_OPTIONS=--max_old_space_size=4096" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
|
|
|
shell: pwsh
|
|
|
|
|
|
|
|
- name: Install & Test pkg
|
|
|
|
run: |
|
|
|
|
npm install -g pkg
|
|
|
|
pkg --help
|
2021-01-06 22:03:37 +01:00
|
|
|
|
2021-01-07 00:27:20 +01:00
|
|
|
- name: Download RH
|
|
|
|
shell: bash
|
|
|
|
run: wget http://www.angusj.com/resourcehacker/#download
|
|
|
|
|
|
|
|
- name: List RH
|
|
|
|
run: dir
|
|
|
|
|
2021-01-07 00:19:40 +01:00
|
|
|
- name: ResourceHacker Test
|
|
|
|
run: ResoureHacker -help
|