Skip to content

Commit

Permalink
Desperation attempt to fix Cypress
Browse files Browse the repository at this point in the history
  • Loading branch information
Ameobea committed Nov 25, 2024
1 parent 01f9a1a commit 04bbda7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ jobs:
${{ runner.os }}-
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_ENV # Updated set-output to GITHUB_ENV
run: echo "dir=$(yarn cache dir)" >> $GITHUB_ENV
- uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
id: yarn-cache
with:
path: ${{ env.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
"typecheck": "tsc --noEmit",
"prettier": "prettier --write \"src/**/*.{ts,js,tsx}\"",
"cypress:open": "cypress open",
"cypress:run": "cypress run --browser chrome --record --key 58905cf6-d1cb-43de-b6cd-b55954039c1a",
"cypress:serve": "http-server dist -p 9000 -P http://localhost:9000? -c-1 --silent"
"cypress:run": "cypress run --browser chrome",
"cypress:serve": "http-server dist -p 9000 -P http://127.0.0.1:9000? -c-1"
},
"dependencies": {
"@pixi/app": "^7.4.2",
Expand Down

0 comments on commit 04bbda7

Please sign in to comment.