Skip to content

Bump @types/node from 18.19.32 to 18.19.61 #740

Bump @types/node from 18.19.32 to 18.19.61

Bump @types/node from 18.19.32 to 18.19.61 #740

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
include:
- os: macos-latest
label: 'darwin'
- os: ubuntu-latest
label: 'linux'
steps:
- name: Check out repository code
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18.15'
- name: Install build tools
run: npm i -g vsce
- name: Install dependencies
run: npm i
- name: Compile extension
run: npm run vscode:prepublish
- run: vsce package
- name: eslint
run: npm run eslint
- name: Tests
run: xvfb-run --auto-servernum npm run test --silent
if: runner.os == 'Linux'
- name: Tests
run: npm run test --slient
if: runner.os != 'Linux'