File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 :
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
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
You can’t perform that action at this time.
0 commit comments