Integrate Parser (#4)

Integrate parser
This commit is contained in:
Jake Grossman
2021-10-26 12:48:04 -05:00
committed by GitHub
parent 9db476dd39
commit d105544596
15 changed files with 1234 additions and 16 deletions

26
.github/workflows/vscode-test.yaml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: "@vscode/test-electron"
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
strategy:
matrix:
os: [macos-11, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 10.x
- run: npm ci
- run: xvfb-run -a npm test
if: runner.os == 'Linux'
- run: npm test
if: runner.os != 'Linux'