Skip to content

Commit 66c9769

Browse files
committed
debugging only windows... no clue how to get yarn to show up
1 parent 95140df commit 66c9769

1 file changed

Lines changed: 6 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
include:
5757
# - { os: macos-latest }
5858
- { os: windows-latest }
59-
- { os: ubuntu-latest }
59+
# - { os: ubuntu-latest }
6060
runs-on: ${{matrix.os}}
6161
continue-on-error: false
6262
steps:
@@ -72,8 +72,6 @@ jobs:
7272
with:
7373
node-version: 24
7474
- name: Enable Corepack (for yarn)
75-
if: matrix.os == 'windows-latest'
76-
shell: pwsh
7775
run: |
7876
corepack enable
7977
corepack prepare yarn@1.22.22 --activate
@@ -86,12 +84,6 @@ jobs:
8684
- name: Install LuckyCLI
8785
run: crystal build src/lucky.cr
8886
- name: Add current directory to PATH
89-
if: matrix.os != 'windows-latest'
90-
shell: bash
91-
run: echo "$PWD" >> "$GITHUB_PATH"
92-
- name: Add current directory to PATH (Windows)
93-
if: matrix.os == 'windows-latest'
94-
shell: pwsh
9587
run: echo "$PWD" >> "$GITHUB_PATH"
9688

9789
# NOTE: Using `env: SHARDS_OVERRIDE` here doesn't seem to work. It will throw a missing file error on every OS
@@ -101,8 +93,12 @@ jobs:
10193
# $env:SHARDS_OVERRIDE = Join-Path -Path $pwd.Path -ChildPath "shard.override.yml"
10294
# crystal spec spec/end_to_end/browser_with_auth_spec.cr
10395
- name: Set SHARDS_OVERRIDE
104-
shell: bash
10596
run: echo "SHARDS_OVERRIDE=${GITHUB_WORKSPACE}/shard.override.yml" >> "$GITHUB_ENV"
97+
98+
- name: Setup upterm session
99+
uses: owenthereal/action-upterm@v1
100+
with:
101+
limit-access-to-actor: true
106102
- name: Run e2e Browser app with authentication flow
107103
run: crystal spec spec/end_to_end/browser_with_auth_spec.cr
108104

0 commit comments

Comments
 (0)