Skip to content

Commit 9a6d738

Browse files
committed
update ci
1 parent 86e956f commit 9a6d738

2 files changed

Lines changed: 4 additions & 12 deletions

File tree

.github/workflows/ci-e2e-nightly.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,17 @@ jobs:
5454
run: |
5555
CLEAN_PATH=$(printf "%s" "$PATH" | tr ':' '\n' | grep -v '/.yarn/bin' | awk '!seen[$0]++' | paste -sd ':' -)
5656
PATH="$CLEAN_PATH" flox activate -d env/ios/latest -- bash -lc '
57-
PATH=$(printf "%s" "$PATH" | tr ":" "\n" | grep -v "/.yarn/bin" | awk "!seen[$0]++" | paste -sd ":" -)
58-
export PATH
5957
echo PATH=$PATH
6058
ls -l /Users/runner/.local/bin || true
61-
which yarn
59+
command -v yarn
6260
yarn --version
6361
node -v
64-
corepack --version
62+
command -v corepack && corepack --version
6563
'
6664
- name: iOS E2E Tests
6765
run: |
6866
CLEAN_PATH=$(printf "%s" "$PATH" | tr ':' '\n' | grep -v '/.yarn/bin' | awk '!seen[$0]++' | paste -sd ':' -)
6967
PATH="$CLEAN_PATH" flox activate -d env/ios/latest -- bash -lc '
70-
PATH=$(printf "%s" "$PATH" | tr ":" "\n" | grep -v "/.yarn/bin" | awk "!seen[$0]++" | paste -sd ":" -)
71-
export PATH
7268
yarn e2e:ios
7369
'
7470

.github/workflows/ci-e2e-optional.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,21 +59,17 @@ jobs:
5959
run: |
6060
CLEAN_PATH=$(printf "%s" "$PATH" | tr ':' '\n' | grep -v '/.yarn/bin' | awk '!seen[$0]++' | paste -sd ':' -)
6161
PATH="$CLEAN_PATH" flox activate -d env/ios/latest -- bash -lc '
62-
PATH=$(printf "%s" "$PATH" | tr ":" "\n" | grep -v "/.yarn/bin" | awk "!seen[$0]++" | paste -sd ":" -)
63-
export PATH
6462
echo PATH=$PATH
6563
ls -l /Users/runner/.local/bin || true
66-
which yarn
64+
command -v yarn
6765
yarn --version
6866
node -v
69-
corepack --version
67+
command -v corepack && corepack --version
7068
'
7169
- name: iOS E2E Tests
7270
run: |
7371
CLEAN_PATH=$(printf "%s" "$PATH" | tr ':' '\n' | grep -v '/.yarn/bin' | awk '!seen[$0]++' | paste -sd ':' -)
7472
PATH="$CLEAN_PATH" flox activate -d env/ios/latest -- bash -lc '
75-
PATH=$(printf "%s" "$PATH" | tr ":" "\n" | grep -v "/.yarn/bin" | awk "!seen[$0]++" | paste -sd ":" -)
76-
export PATH
7773
yarn e2e:ios
7874
'
7975

0 commit comments

Comments
 (0)