generated from KevinBatdorf/gutenberg-rust-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #309 from KevinBatdorf/fix-6-5-compat
Add 6-5 compat updates
- Loading branch information
Showing
12 changed files
with
3,834 additions
and
24,791 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
spec: ${{ steps.list_files.outputs.spec }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: List Files | ||
id: list_files | ||
run: | | ||
|
@@ -29,9 +29,9 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Cache node modules | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
id: cache-node-modules | ||
with: | ||
path: node_modules | ||
|
@@ -54,11 +54,11 @@ jobs: | |
wp-version: [null, 'Next'] | ||
steps: | ||
- name: Clone repo | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Set up node | ||
uses: actions/setup-node@v3 | ||
- name: Node modules cache | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
id: cache-node-modules | ||
with: | ||
path: node_modules | ||
|
@@ -79,7 +79,7 @@ jobs: | |
if: ${{ matrix.wp-version }} | ||
run: rm .wp-env.json | ||
- name: Maybe change WP version | ||
uses: jsdaniell/[email protected].1 | ||
uses: jsdaniell/[email protected].3 | ||
if: ${{ matrix.wp-version }} | ||
with: | ||
name: '.wp-env.json' | ||
|
@@ -89,17 +89,17 @@ jobs: | |
npx wp-env start | ||
echo "WordPress version: `npx wp-env run cli core version`" | ||
- name: Cypress run | ||
uses: cypress-io/github-action@v5 | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
spec: cypress/e2e/${{ matrix.spec }}.cy.js | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
with: | ||
name: cypress-screenshots | ||
path: cypress/screenshots | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
with: | ||
name: cypress-videos | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
{ | ||
"core": null, | ||
"plugins": ["."], | ||
"mappings": { | ||
"wp-content/plugins/prismatic": "https://downloads.wordpress.org/plugin/prismatic.zip" | ||
} | ||
"plugins": ["."] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.