Skip to content

Commit

Permalink
I think I figured out why there are win32 package complaints now...
Browse files Browse the repository at this point in the history
  • Loading branch information
klippx committed Dec 21, 2023
1 parent 1445987 commit 56298b7
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions .github/actions/setup-smoke-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,36 +14,38 @@ inputs:
runs:
using: composite
steps:
- name: Checkout mappersmith/
uses: actions/checkout@v4
with:
path: mappersmith
- name: Checkout mappersmith-consumer/
uses: actions/checkout@v4
with:
repository: klippx/mappersmith-consumer
path: mappersmith-consumer

- name: Install bun
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ inputs.bun-version }}

- name: Install node ${{ inputs.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ inputs.node-version }}

- name: Install deps in mappersmith/
- name: Install bun
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ inputs.bun-version }}

# This actually need to be done before checking out mappersmith/ otherwise yarn will get "win32" config in `supportedArchitectures` which mappersmith-consumer/ does not support.
- name: Install deps in mappersmith-consumer/
run: |
cd mappersmith
cd mappersmith-consumer
yarn config
yarn install --immutable --immutable-cache
shell: bash

- name: Install deps in mappersmith-consumer/
- name: Checkout mappersmith/
uses: actions/checkout@v4
with:
path: mappersmith

- name: Install deps in mappersmith/
run: |
cd mappersmith-consumer
cd mappersmith
yarn config
yarn install --immutable --immutable-cache
shell: bash
Expand Down

0 comments on commit 56298b7

Please sign in to comment.