Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
MhouneyLH committed Jan 21, 2024
1 parent eeaeba1 commit 0b9539d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

on: push

jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Setup vsce
run: npm i -g @vscode/vsce
- name: Package extension
run: vsce package
# - name: Publish to Marketplace

0 comments on commit 0b9539d

Please sign in to comment.