Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 079d655

Browse files
authored
Merge pull request #11 from SimonGolms/feature/dependencies
feature/dependencies
2 parents 1981b1c + 9c680ca commit 079d655

File tree

6 files changed

+228
-192
lines changed

6 files changed

+228
-192
lines changed

.eslintrc.js

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,4 @@ module.exports = {
1717
// HINT: prettier must be the last plugin to work
1818
"prettier",
1919
],
20-
rules: {
21-
"import/no-unused-modules": [
22-
"error",
23-
{
24-
ignoreExports: [
25-
"playwright/index.ts",
26-
"src/index.tsx",
27-
"src/**/*.d.ts",
28-
"src/**/*.{spec,test}.{ts,tsx}",
29-
"*.{js,ts}", // mostly configuration files
30-
],
31-
missingExports: true,
32-
src: ["."],
33-
unusedExports: true,
34-
},
35-
],
36-
},
3720
};

.github/workflows/build-and-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
container:
1212
# Using the playwright container (https://mcr.microsoft.com/product/playwright/about)
1313
# for performance reasons to avoid having to download and install all dependencies again.
14-
image: mcr.microsoft.com/playwright:v1.31.1-focal
14+
image: mcr.microsoft.com/playwright:v1.31.2-focal
1515
# Container should run with the same user of the host VM, otherwise it leads to permission issues
1616
# see: https://github.com/actions/runner/issues/691 & https://github.com/actions/checkout/issues/211#issuecomment-680107607
1717
options: --user 1001

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ odsComponentPipeline(
3333
// The playwright container is based on the Ubuntu-20.04 (focal) image and comes with the latest Node.js v18,
3434
// as well as all additionally installed dependencies and browser instances.
3535
// see: https://github.com/microsoft/playwright/blob/main/utils/docker/Dockerfile.focal
36-
image: "mcr.microsoft.com/playwright:v1.31.1-focal",
36+
image: "mcr.microsoft.com/playwright:v1.31.2-focal",
3737
name: 'playwright',
3838
// HINT: Before you increase the resources, make sure that the quotas provide the appropriate resources.
3939
// resourceLimitCpu: '1',

0 commit comments

Comments
 (0)