Skip to content

Commit

Permalink
Merge pull request #8 from tidal-music/fix-playwright-executablePath
Browse files Browse the repository at this point in the history
Fix playwright executable path
  • Loading branch information
enjikaka committed May 29, 2024
2 parents 7d52114 + 738192b commit 224b4f9
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-css.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
lint-css:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
name: Stylelint
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ on:

jobs:
lint-js:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
name: Eslint
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Run Lint Checks
run: pnpm lint:js
type-check:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
name: TypeScript
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/web-test-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ concurrency:

jobs:
web-test-runner:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Install Playwright Browsers
run: pnpm dlx playwright install --with-deps chromium
run: pnpm dlx playwright@1.43.1 install --with-deps chromium
- name: Run unit tests
run: pnpm test
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@
"@tidal-music/player-web-components": "^0.1.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"@web/test-runner": "^0.18.1",
"@web/test-runner": "^0.18.2",
"@web/test-runner-playwright": "^0.11.0",
"cypress": "^13.7.2",
"esbuild": "^0.20.2",
"esbuild-plugin-clean": "^1.0.1",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-postcss": "^0.0.4",
"eslint": "~8",
"eslint-config-tidal": "3.2.0",
Expand All @@ -53,6 +54,7 @@
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"playwright": "1.43.1",
"postcss": "^8.4.38",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^9.5.4",
Expand All @@ -62,8 +64,5 @@
"stylelint-config-standard": "^36.0.0",
"svgo": "^3.2.0",
"typescript": "^5.4.4"
},
"dependencies": {
"esbuild-plugin-copy": "^2.1.1"
}
}
20 changes: 11 additions & 9 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 224b4f9

Please sign in to comment.