Skip to content

Detect Apama, fix up settings, use stdio LSP, miscellaneous cleanup #5

Detect Apama, fix up settings, use stdio LSP, miscellaneous cleanup

Detect Apama, fix up settings, use stdio LSP, miscellaneous cleanup #5

Workflow file for this run

name: continuous integration
on:
- pull_request
jobs:
ci:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
- run: npm install
- run: npm run build
- run: xvfb-run -a npm test
if: runner.os == 'Linux'
- run: npm test
if: runner.os != 'Linux'