Add support for unquoted object properties #108
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
name: tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '18.20.4' | |
- run: npm install | |
- run: npm run lint | |
- run: npm run test:unit | |
- run: npm run test:benchmark | |
extension-test-windows: | |
# Run on windows because it provides a graphics server | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '18.20.4' | |
- run: npm install | |
- name: Run lowest supported version | |
run: npm run test:vsc | |
env: | |
VSCODE_VERSION: "1.44.0" | |
- name: Run newish version | |
run: npm run test:vsc | |
env: | |
VSCODE_VERSION: "1.96.2" | |
extension-test-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '18.20.4' | |
- run: npm install | |
- name: Run lowest supported version | |
env: | |
VSCODE_VERSION: "1.44.0" | |
run: | | |
export DISPLAY=':99.0' | |
Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | |
npm run test:vsc | |
- name: Run newish version | |
env: | |
VSCODE_VERSION: "1.96.2" | |
run: | | |
export DISPLAY=':99.0' | |
Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | |
npm run test:vsc |