Skip to content

fix(deps): update dependency vscode-languageserver to v10 #22

fix(deps): update dependency vscode-languageserver to v10

fix(deps): update dependency vscode-languageserver to v10 #22

name: test-javascript
permissions: {}
on:
pull_request:
branches:
- main
push:
branches:
- main
- renovate/**
jobs:
test-javascript:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
node-version: ['24.x']
steps:
- name: set git core.autocrlf to 'input'
run: git config --global core.autocrlf input
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: with Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: package-lock.json
- run: npm ci
if: ${{ matrix.os != 'windows-latest' }}
- run: npm ci --no-optional
if: ${{ matrix.os == 'windows-latest' }}
- run: npm test
- run: npm run eslint