Skip to content

Add wordPattern to language configuration #24

Add wordPattern to language configuration

Add wordPattern to language configuration #24

Workflow file for this run

on:
push:
branches: [main]
pull_request:
branches: [main]
name: build.yaml
permissions: read-all
jobs:
ubuntu-build:
name: Build extension on Ubuntu
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install Node.js dependencies
run: npm ci
shell: bash
- name: Run TypeScript compiler
run: npm run compile
shell: bash
- name: Run ESLint
run: npm run lint
shell: bash