-
-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump required VSCode version to 1.82.3 #503
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
987daf7
Bump required VSCode version to 1.86.1
ybiquitous 13c0c77
Fix type error in `test/e2e/jest-runner-vscode.config.js`
ybiquitous 46606c0
Update failed `test/e2e/__tests__/__snapshots__/code-actions.ts.snap`
ybiquitous 83ebf25
Increase test timeout
ybiquitous 5e5ba5e
Revert "Increase test timeout"
ybiquitous cbabe0c
Downgrade VSCode to 1.82.3
ybiquitous 2b046fa
Install npm 9 on CI
ybiquitous 6a3d590
Update failed `test/e2e/__tests__/__snapshots__/code-actions.ts.snap`
ybiquitous d862bf2
Merge branch 'main' into bump-required-vscode-version
ybiquitous 1c1c86f
Update Volta settings
ybiquitous File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -11,41 +11,29 @@ on: | |
|
||
jobs: | ||
test: | ||
name: Test for Stylelint ${{ matrix.stylelint }} on Node.js ${{ matrix.node-version }} and ${{ matrix.os }} | ||
name: Test for Stylelint ${{ matrix.stylelint }} on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: [18] | ||
os: [ubuntu-latest, macos-latest] | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
stylelint: [14, 15] | ||
include: | ||
- stylelint: 15 | ||
node-version: 14 # For some reason jest-runner-vscode doesn't work well with Node v18 and Windows. | ||
os: windows-latest | ||
- stylelint: 14 | ||
node-version: 14 # For some reason jest-runner-vscode doesn't work well with Node v18 and Windows. | ||
os: windows-latest | ||
timeout-minutes: 30 | ||
permissions: | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
node-version-file: .nvmrc | ||
cache: npm | ||
|
||
# TODO: [email protected] is broken on Windows. See https://github.com/npm/cli/issues/4341 | ||
- name: Workaround for npm installation failure on Node.js 14 and Windows | ||
if: ${{ matrix.node-version == '14' && runner.os == 'Windows' }} | ||
run: npm install --global [email protected] | ||
|
||
- name: Install latest npm | ||
if: ${{ matrix.node-version == '18' }} | ||
run: npm install --global npm@latest | ||
# TODO: npm 10 requires Node.js 18.17 or later. | ||
# run: npm install --global npm@latest | ||
run: npm install --global npm@9 | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
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 +1 @@ | ||
14.17.6 | ||
18.15.0 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,6 +1,6 @@ | ||
{ | ||
"stylelint.customSyntax": "${workspaceFolder}/custom-syntax.js", | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.stylelint": true | ||
"source.fixAll.stylelint": "explicit" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [note] See also #492 |
||
} | ||
} |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[note] This file is used as a cache key on CI. So, we must update this file when bumping the VSCode version.
vscode-stylelint/.github/workflows/testing.yml
Line 49 in 987daf7