Limit highlighting of strings to a single line (#107) #259
This file contains 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
name: CI | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
tags: ['0.[0-9]+.[0-9]+'] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Test | |
run: pnpm run test | |
compile-and-package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: bait-lang/setup-bait@main | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Compile | |
run: pnpm run compile | |
- name: Package | |
run: pnpm run package | |
- name: Create Release | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: vscode-vba-0.*.*.vsix | |
publish: | |
needs: | |
- test | |
- compile-and-package | |
if: startsWith(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: bait-lang/setup-bait@main | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Publish to VS Code Marketplace | |
if: always() | |
uses: HaaLeo/publish-vscode-extension@v1 | |
with: | |
pat: ${{ secrets.VSCE_PAT }} | |
registryUrl: https://marketplace.visualstudio.com | |
- name: Publish to Open VSX Registry | |
if: always() | |
uses: HaaLeo/publish-vscode-extension@v1 | |
with: | |
pat: ${{ secrets.OPEN_VSX_PAT }} |