You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/tests.yml
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ jobs:
52
52
- name: Configure node version
53
53
uses: actions/setup-node@v4
54
54
with:
55
-
node-version: '20'
55
+
node-version-file: .nvmrc
56
56
cache: npm
57
57
58
58
- name: Install dependencies
@@ -73,7 +73,7 @@ jobs:
73
73
- name: Configure node version
74
74
uses: actions/setup-node@v4
75
75
with:
76
-
node-version: '20'
76
+
node-version-file: .nvmrc
77
77
cache: npm
78
78
79
79
- name: Install dependencies
@@ -100,7 +100,7 @@ jobs:
100
100
- uses: actions/checkout@v4
101
101
- uses: actions/setup-node@v4
102
102
with:
103
-
node-version: '20'
103
+
node-version-file: .nvmrc
104
104
cache: npm
105
105
- run: npm ci --prefer-offline
106
106
- run: npm run build
@@ -110,7 +110,7 @@ jobs:
110
110
env:
111
111
HOME: /root
112
112
113
-
- uses: actions/upload-artifact@v2
113
+
- uses: actions/upload-artifact@v4
114
114
if: always()
115
115
with:
116
116
name: ${{ env.PLAYWRIGHT_REPORT_DIR }}
@@ -265,7 +265,7 @@ jobs:
265
265
close-previous: true
266
266
title: "🧪 Tests are failing on main"
267
267
body: "It looks like the build is currently failing on the main branch. See failed [action results](https://github.com/patternfly/patternfly-elements/actions/runs/${{ github.run_id }}) for more details."
268
-
268
+
269
269
build-windows:
270
270
name: Verify that build runs on Windows
271
271
runs-on: windows-latest
@@ -275,9 +275,9 @@ jobs:
275
275
276
276
# Configures the node version used on GitHub-hosted runners
0 commit comments