Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Add playwright browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisWiegman committed Jun 3, 2024
1 parent 755ca0f commit 2b2e626
Show file tree
Hide file tree
Showing 4 changed files with 113 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ jobs:
with:
go-version: "1.22"

- name: Install Node dependencies
run: npm ci

- name: Install Playwright Browsers
run: npx playwright install --with-deps

- name: Build test cli
run: |
go mod vendor
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,6 @@ build/

# Ignore files generated by Jetbrains' IDEs
.idea/

# Ignore node_modules
node_modules/
79 changes: 79 additions & 0 deletions package-lock.json

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

25 changes: 25 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "kana",
"description": "A simple, portable CLI for efficient WordPress development ",
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisWiegman/kana.git"
},
"keywords": [
"docker",
"wordpress",
"plugins",
"themes",
"developer-tools",
"development-environment"
],
"author": "Chris Wiegman <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ChrisWiegman/kana/issues"
},
"homepage": "https://github.com/ChrisWiegman/kana#readme",
"devDependencies": {
"@playwright/test": "^1.44.1"
}
}

0 comments on commit 2b2e626

Please sign in to comment.