forked from ritwickdey/vscode-live-sass-compiler
-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed testing, added new tests (+ formatting) - PR#373 from glenn2223
### Updated - `fdir` to `6.4.0` [Changelog][cl:fd] - `sass-embedded` to `1.79.4` [Changelog][cl:se] - Various dev dependency updates _(nothing user facing)_ ### Other - Fixed broken tests and added added several new tests - Added test badge to README - Code formatting and linting [cl:fd]: https://github.com/thecodrr/fdir/releases [cl:se]: https://github.com/sass/embedded-host-node/blob/main/CHANGELOG.md
- Loading branch information
Showing
27 changed files
with
1,966 additions
and
1,018 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,43 @@ | ||
name: Tests | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- "**" | ||
|
||
# ALLOW MANUAL RUNS | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
os: [macos-latest, ubuntu-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.x | ||
|
||
- name: Install the package dependencies | ||
run: npm ci | ||
|
||
- name: Test extension | ||
if: runner.os == 'Linux' | ||
run: xvfb-run -a npm test | ||
|
||
- name: Test extension | ||
if: runner.os != 'Linux' | ||
run: npm test | ||
|
||
- name: Ensure prePublish script is working | ||
if: runner.os != 'Linux' | ||
run: npm run vscode:prepublish | ||
|
||
- name: Ensure prePublish script is working | ||
if: runner.os == 'Linux' | ||
run: xvfb-run -a npm run vscode:prepublish |
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,4 +1,5 @@ | ||
{ | ||
"tabWidth": 4, | ||
"useTabs": false | ||
"useTabs": false, | ||
"printWidth": 80 | ||
} |
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 |
---|---|---|
|
@@ -37,16 +37,22 @@ All notable changes to this project will be documented in this file. | |
|
||
### Changed | ||
|
||
- Switched from `[email protected]` to `[email protected].3` - as mentioned above | ||
- Switched from `[email protected]` to `[email protected].4` - as mentioned above | ||
|
||
### Updated | ||
|
||
- `autoprefixer` to `10.4.20` [Changelog][cl:fd] | ||
- `fdir` to `6.3.0` [Changelog][cl:fd] | ||
- `fdir` to `6.4.0` [Changelog][cl:fd] | ||
- `picomatch` to `4.0.2` [Changelog][cl:pm] | ||
- `postcss` to `8.4.47` [Changelog][cl:pc] | ||
- Various dev dependency updates _(nothing user facing)_ | ||
|
||
### Other | ||
|
||
- Fixed broken tests and added added several new tests | ||
- Added test badge to README | ||
- Code formatting and linting | ||
|
||
## [6.1.2] - 2023-11-22 | ||
|
||
<small>[Compare to previous release][comp:6.1.2]</small> | ||
|
@@ -843,3 +849,4 @@ All notable changes to this project will be documented in this file. | |
[cl:pc]: https://github.com/postcss/postcss/blob/main/CHANGELOG.md | ||
[cl:pm]: https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md | ||
[cl:sa]: https://github.com/sass/dart-sass/blob/main/CHANGELOG.md | ||
[cl:se]: https://github.com/sass/embedded-host-node/blob/main/CHANGELOG.md |
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.