README: Use C/C++ instead of clangd #87
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: Build on Linux | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: "npm" | |
- run: npm ci | |
- run: npm run compile | |
- run: npm run ci-lint | |
# TODO: Enable unit tests | |
# - run: xvfb-run -a npm run unitTests | |
- run: npm run package | |
- name: Upload package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: vsix_package | |
path: out/*.vsix |