-
Notifications
You must be signed in to change notification settings - Fork 29
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 #87 from kucrut/eslint-9
ESLint 9
- Loading branch information
Showing
10 changed files
with
2,571 additions
and
4,643 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@kucrut/vite-for-wp': patch | ||
--- | ||
|
||
ESLint 9 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -9,30 +9,28 @@ concurrency: ${{ github.workflow }}-${{ github.ref }} | |
|
||
jobs: | ||
release: | ||
# prevents this action from running on forks | ||
# Prevent this action from running on forks. | ||
if: github.repository == 'kucrut/vite-for-wp' | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
with: | ||
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | ||
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits. | ||
fetch-depth: 0 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- name: Setup PNPM | ||
uses: pnpm/action-setup@v3 | ||
|
||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
- name: Setup Nodejs | ||
uses: actions/setup-node@v3 | ||
with: | ||
run_install: false | ||
cache: "pnpm" | ||
node-version: "20" | ||
|
||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile --silent | ||
run: pnpm install --frozen-lockfile --recursive --silent --strict-peer-dependencies | ||
|
||
- id: get_version | ||
shell: bash | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.