Skip to content

Commit

Permalink
Merge pull request #2 from wkillerud/fix/triage-1.0.0
Browse files Browse the repository at this point in the history
Preparations for 1.0.1
  • Loading branch information
wkillerud authored May 15, 2022
2 parents 5a956ed + a4f8151 commit fdf22ea
Show file tree
Hide file tree
Showing 20 changed files with 2,282 additions and 7,449 deletions.
37 changes: 18 additions & 19 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,26 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "lts/*"

- name: Install dependencies
run: npm ci
- name: Install dependencies
run: npm ci

- name: Compile
run: npm run compile
- name: Run linter
run: npm run lint

- name: Run linter
run: npm run lint
- name: Run tests in simulated X environment
run: xvfb-run -a npm run test
if: runner.os == 'Linux'

- name: Run unit tests
run: npm run test

- name: Run E2E tests
run: npm run test:e2e
- name: Run tests
run: npm run test
if: runner.os != 'Linux'
6 changes: 1 addition & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@
"name": "Launch Client",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"outFiles": ["${workspaceRoot}/dist/**/*.js"],
"preLaunchTask": {
"type": "npm",
"script": "watch"
}
"outFiles": ["${workspaceRoot}/dist/**/*.js"]
},
{
"type": "node",
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@ Based on SCSS Intellisense by [Denis Malinochkin and contributors](https://githu

## Setup

Search for Some Sass from the extension installer within VS Code or put this into the command palette.

```
ext install some-sass
```
Search for Some Sass (`SomewhatStationery.some-sass`) from the extension installer within VS Code or install from [the Marketplace](https://marketplace.visualstudio.com/items?itemName=SomewhatStationery.some-sass).

If you have SCSS IntelliSense (`mrmlnc.vscode-scss`) installed you should disable or uninstall it. Otherwise the two extensions will both provide hover information and code suggestions.

Expand Down
Loading

0 comments on commit fdf22ea

Please sign in to comment.