Grammar improvements #34
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 VSIX Package | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [19.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Use Rust | |
uses: actions-rs/[email protected] | |
with: | |
toolchain: stable | |
- name: Prepare wasm-pack | |
uses: jetli/[email protected] | |
- name: NPM Install | |
run: npm install | |
- name: Build | |
run: npm i -g vsce && vsce package | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ${{ github.workspace }}/*.vsix |