Skip to content

Merge pull request #29 from Christopher-R-Perkins/feature/mlstacks #59

Merge pull request #29 from Christopher-R-Perkins/feature/mlstacks

Merge pull request #29 from Christopher-R-Perkins/feature/mlstacks #59

Workflow file for this run

---
name: VSCode Extension CI
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Lint
uses: ./.github/actions/lint
build-and-test:
needs: lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
cache-dependency-path: package-lock.json
- name: Install Node dependencies
run: npm ci
- name: Compile TS tests
run: npm run pretest
- name: Run headless test
uses: coactions/setup-xvfb@v1
with:
run: npm test