Skip to content

Setup skeleton for developing a VS Code extension with bun #1

Setup skeleton for developing a VS Code extension with bun

Setup skeleton for developing a VS Code extension with bun #1

Workflow file for this run

name: Lint
on:
push:
branches:
- main
paths:
- '**.ts'
pull_request:
paths:
- '**.ts'
jobs:
eslint:
defaults:
run:
working-directory: ./vscode-extension
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: npm
- run: npm run lint