Skip to content

build(deps-dev): bump typescript-eslint from 8.57.0 to 8.57.1 #115

build(deps-dev): bump typescript-eslint from 8.57.0 to 8.57.1

build(deps-dev): bump typescript-eslint from 8.57.0 to 8.57.1 #115

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Build and Lint
# 'compile' script runs: check-types && lint && node esbuild.js
run: npm run compile
- name: Test
if: runner.os == 'Linux' # vscode-test requires a display server or xvfb on Linux, skipping for simple CI for now or strictly running unit tests
run: echo "Skipping UI tests in headless CI for now"