Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/a11y.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js 18
- name: Use Node.js 20
uses: actions/setup-node@v2
with:
node-version: 18
node-version: 20
- run: corepack enable
- name: Install
run: yarn install
- name: Build
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
- run: yarn install
- run: yarn build
- run: yarn lint
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/promote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ jobs:
NPM_CONFIG_LEGACY_PEER_DEPS: true
steps:
- uses: actions/checkout@v2
- name: Build for promotion
run: yarn install --frozen-lockfile && yarn build
- uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: corepack enable
- name: Build for promotion
run: yarn install --immutable && yarn build
- name: GitHub Tag Name example
run: |
echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 18
node-version: 20
- run: corepack enable
- uses: actions/cache@v4
id: yarn-cache
name: Cache npm deps
Expand All @@ -24,7 +25,7 @@ jobs:
**/node_modules
~/.cache/Cypress
key: ${{ runner.os }}-yarn-16-${{ secrets.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
- run: yarn install --frozen-lockfile
- run: yarn install --immutable
if: steps.yarn-cache.outputs.cache-hit != 'true'
- uses: actions/cache@v4
id: dist
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ storybook-static
.env
stats.html
.history
.yarn

.cache
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,5 +118,5 @@
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
"packageManager": "yarn@4.10.3"
}
6 changes: 3 additions & 3 deletions packages/dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"i18next-browser-languagedetector": "^8.0.0",
"i18next-parser": "^9.3.0",
"i18next-pseudo": "^2.2.0",
"lodash-es": "^4.17.21",
"marked": "^15.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^15.5.3",
"react-router-dom": "^6.11.2",
"marked": "^15.0.6",
"lodash-es": "^4.17.21"
"react-router-dom": "^6.11.2"
},
"devDependencies": {
"@types/react": "^18.2.79",
Expand Down
10 changes: 5 additions & 5 deletions packages/module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
},
"peerDependencies": {
"@patternfly/react-core": "^6.0.0",
"marked": "^15.0.6",
"react": "^17 || ^18 || ^19",
"react-dom": "^17 || ^18 || ^19",
"marked": "^15.0.6"
"react-dom": "^17 || ^18 || ^19"
},
"dependencies": {
"dompurify": "^3.2.4",
Expand All @@ -57,12 +57,12 @@
"devDependencies": {
"@patternfly/documentation-framework": "^6.0.6",
"@patternfly/patternfly": "^6.0.0",
"@patternfly/react-code-editor": "^6.0.0",
"@patternfly/react-core": "^6.0.0",
"@patternfly/react-icons": "^6.0.0",
"@patternfly/react-styles": "^6.0.0",
"@patternfly/react-tokens": "^6.0.0",
"@patternfly/react-table": "^6.0.0",
"@patternfly/react-code-editor": "^6.0.0",
"@patternfly/react-core": "^6.0.0",
"@patternfly/react-tokens": "^6.0.0",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.0",
Expand Down
Loading