Add wordPattern to language configuration
#24
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |