simplicityhl 0.4.0

Rust-like language that compiles to Simplicity bytecode.
Documentation
name: VS Code extension (ESLint)

on:
  push:
    branches:
      - master
    paths:
      - 'vscode/**'
      - '.github/workflows/typescript.yml'
  pull_request:
    branches:
      - master
    paths:
      - 'vscode/**'
      - '.github/workflows/typescript.yml'
  workflow_dispatch:

jobs:
  eslint:
    name: Lint on Node v${{ matrix.node }}
    runs-on: ubuntu-latest
    timeout-minutes: 10
    
    permissions:
      contents: read
    concurrency:
      group: ${{ github.workflow }}-${{ github.ref }}
      cancel-in-progress: true

    strategy:
      fail-fast: false
      matrix:
        node:
          - 22
    
    defaults:
      run:
        working-directory: ./vscode
    
    steps:
      - uses: actions/checkout@v4
      
      - uses: actions/setup-node@v4
        with:
          node-version: ${{ matrix.node }}
          cache: 'npm'
          cache-dependency-path: vscode/package-lock.json
      
      - name: Install dependencies
        run: npm ci
        env:
          CI: true
      
      - name: Run ESLint
        run: npm run eslint-check
        env:
          CI: true