We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa8705d commit 49f1f8eCopy full SHA for 49f1f8e
.github/workflows/verify.yaml
@@ -46,11 +46,19 @@ jobs:
46
runs-on: ubuntu-latest
47
container:
48
image: mcr.microsoft.com/playwright:v1.57.0-noble
49
- options: --user 1001
+ options: --user 0 # Run as root to allow installation of git-lfs
50
defaults:
51
run:
52
working-directory: ./spock-website
53
steps:
54
+ # Unlike the default image, the playwright image does not have git-lfs installed
55
+ - name: Install git-lfs and switch to non-root user
56
+ run: |
57
+ apt-get update
58
+ apt-get install -y git-lfs
59
+ su 1001
60
+ working-directory: ./ # the default only exists after checkout
61
+
62
- name: Checkout
63
uses: actions/checkout@v6
64
with:
0 commit comments