Skip to content

Logging and bugfixes #18

Logging and bugfixes

Logging and bugfixes #18

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [22.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: acumate-plugin/package-lock.json
- name: Install dependencies
working-directory: ./acumate-plugin
run: npm ci
env:
VSCODE_SKIP_POSTINSTALL: true
- name: Run tests
working-directory: ./acumate-plugin
run: xvfb-run -a npm test
env:
VSCODE_SKIP_POSTINSTALL: true