Last active
June 30, 2025 05:35
-
-
Save wjkoh/4bf7132c80fbf4971bcf3f5a06911675 to your computer and use it in GitHub Desktop.
Go: How to Install `playwright-go` Dependencies using Taskfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://taskfile.dev | |
version: '3' | |
tasks: | |
playwright: | |
vars: | |
PWGO_VER: | |
sh: go list -m -f "{{ "{{.Version}}" }}" github.com/playwright-community/playwright-go | |
cmds: | |
- go install github.com/playwright-community/playwright-go/cmd/playwright@{{.PWGO_VER}} | |
sources: | |
- go.mod | |
generates: | |
- "{{.GOPATH}}/bin/playwright" |
Author
wjkoh
commented
Jun 30, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment