Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
bobzilladev committed Jan 5, 2024
1 parent 26fbfbc commit f43e7dd
Showing 1 changed file with 22 additions and 9 deletions.
31 changes: 22 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,12 +224,25 @@ jobs:
runs-on: ${{ matrix.settings.host }}
steps:
- uses: actions/checkout@v3
- name: Setup node
- name: Setup node x86_64
uses: actions/setup-node@v3
if: inputs.target == 'x86_64-pc-windows-msvc'
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: yarn
- name: Setup node x86
uses: actions/setup-node@v3
if: inputs.target == 'i686-pc-windows-msvc'
with:
node-version: 18
check-latest: true
cache: yarn
architecture: x86
- name: yarn config x86
if: inputs.target == 'i686-pc-windows-msvc'
run: yarn config set supportedArchitectures.cpu "ia32"
shell: bash
- name: Install dependencies
run: yarn install
- name: Download artifacts
Expand All @@ -240,14 +253,14 @@ jobs:
- name: List packages
run: ls -R .
shell: bash
- name: Set env
# https://stackoverflow.com/a/65110357
run: |
chcp 65001 #set code page to utf-8
echo ("NGROK_AUTHTOKEN=" + "${{ secrets.NGROK_AUTHTOKEN }}") >> $env:GITHUB_ENV
echo ("THE_TEST=" + "moo") >> $env:GITHUB_ENV
- run: echo "${{ env.THE_TEST }}"
- run: echo $env:THE_TEST
#- name: Set env
# # https://stackoverflow.com/a/65110357
# run: |
# chcp 65001 #set code page to utf-8
# echo ("NGROK_AUTHTOKEN=" + "${{ secrets.NGROK_AUTHTOKEN }}") >> $env:GITHUB_ENV
# echo ("THE_TEST=" + "moo") >> $env:GITHUB_ENV
#- run: echo "${{ env.THE_TEST }}"
#- run: echo $env:THE_TEST
- name: Test bindings
env:
NGROK_AUTHTOKEN: ${{ secrets.NGROK_AUTHTOKEN }}
Expand Down

0 comments on commit f43e7dd

Please sign in to comment.