mirror of https://github.com/bitwarden/cli.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
615 B
28 lines
615 B
name: Windows Environment Exploration |
|
|
|
on: |
|
workflow_dispatch: |
|
|
|
jobs: |
|
exp: |
|
runs-on: windows-latest |
|
steps: |
|
- 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: Dir |
|
run: dir C:\Users\runneradmin |
|
|
|
- name: Install & Test pkg |
|
run: | |
|
npm install -g pkg |
|
pkg --help |
|
|
|
- name: Search for fetchd |
|
run: dir \*fetched* /s
|
|
|