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

Commit f623e86

Browse files
authored
Merge pull request #10 from SimonGolms/feature/dependencies
feature/dependencies
2 parents 851501a + ae93739 commit f623e86

File tree

5 files changed

+105
-105
lines changed

5 files changed

+105
-105
lines changed

.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.0-focal
14+
image: mcr.microsoft.com/playwright:v1.31.1-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

.stylelintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
2-
extends: ["stylelint-config-standard"],
2+
extends: ["stylelint-config-standard", "stylelint-prettier/recommended"],
33
plugins: ["stylelint-order"],
44
rules: {
55
/**

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ odsComponentPipeline(
3030
envVars: [
3131
envVar(key: 'HOME', value: '/tmp')
3232
],
33-
// The playwright container is based on the Ubuntu-20.04 (focal) image and comes with the latest Node.js v16,
33+
// 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.0-focal",
36+
image: "mcr.microsoft.com/playwright:v1.31.1-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)