-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1d573cc
commit 25480b4
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: create-vsix-artifact | ||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
build-and-upload: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Check out the code' | ||
uses: actions/checkout@v3 | ||
- name: 'Set up NodeJS' | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 'lts/*' # Node LTS should always be fine. | ||
- name: 'Install node dependencies' | ||
run: yarn | ||
- name: 'Create VSIX' | ||
run: vsce package | ||
- name: 'Upload artifact' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: test-vsix | ||
path: ./sfdx-code-analyzer-vscode-*.vsix | ||
|
||
|
||
|
||
|
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