Skip to content

Commit 42c0f3f

Browse files
authored
chore: roll Playwright / dependencies to v1.39.0 (#269)
1 parent 402b9ca commit 42c0f3f

File tree

17 files changed

+3957
-1858
lines changed

17 files changed

+3957
-1858
lines changed

.devcontainer/devcontainer.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "Node.js & privledged Docker",
3+
"image": "mcr.microsoft.com/devcontainers/typescript-node",
4+
"postCreateCommand": "curl -fsSL https://get.docker.com | bash - && curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash && k3d cluster create && curl -LO \"https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl\" && chmod +x kubectl && mv kubectl /usr/local/bin/",
5+
"remoteUser": "root",
6+
"runArgs": [
7+
"--privileged",
8+
"--init",
9+
"--shm-size=1g",
10+
"-v",
11+
"/var/run/docker.sock:/var/run/docker.sock"
12+
]
13+
}

.github/workflows/nodejs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
curl -sfL https://get.k3s.io | K3S_KUBECONFIG_MODE=777 INSTALL_K3S_EXEC="server --docker --disable traefik --kubelet-arg=image-gc-high-threshold=85 --kubelet-arg=image-gc-low-threshold=80" sudo sh -
2121
mkdir -p ~/.kube
2222
sudo cp /etc/rancher/k3s/k3s.yaml ~/.kube/config
23-
sudo chown runner ~/.kube/config
23+
sudo chown $USER ~/.kube/config
2424
- name: Install dependencies
2525
run: npm ci
2626
working-directory: e2e

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Try Playwright
22

33
![CI](https://github.com/mxschmitt/try-playwright/workflows/CI/badge.svg)
4-
![Playwright version](https://img.shields.io/badge/Playwright-1.35.1-blue.svg)
4+
![Playwright version](https://img.shields.io/badge/Playwright-1.40.1-blue.svg)
55

66
> Interactive playground for [Playwright](https://github.com/microsoft/playwright) to run examples directly from your browser
77

e2e/package-lock.json

+43-33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

e2e/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"homepage": "https://github.com/mxschmitt/try-playwright#readme",
1515
"devDependencies": {
16-
"@playwright/test": "^1.35.1"
16+
"@playwright/test": "^1.40.1"
1717
},
1818
"private": true
1919
}

0 commit comments

Comments
 (0)