Skip to content

Bump @types/node from 22.8.1 to 22.8.6 (#1294) #540

Bump @types/node from 22.8.1 to 22.8.6 (#1294)

Bump @types/node from 22.8.1 to 22.8.6 (#1294) #540

Workflow file for this run

name: continuous integration Build Matrix
on: [push]
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: test
run: npm run coverage
- name: SonarCloud Scan
if: matrix.os == 'ubuntu-latest'
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Build project
run: npm run vscode:prepublish