Skip to content

Commit

Permalink
- Workflow to build and upload the ide extension binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
Karol Harezlak committed Jan 31, 2023
1 parent 25290d5 commit 7dffccb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build_upload_extension.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Pyrsia VS Code Extension build and upload extension's binaries

on:
schedule:
# scheduled twice a week
- cron: '* * * * 1,5'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 19
- run: sudo apt-get install xvfb
- run: npm install
- run: npm run compile
- run: npm run lint
- run: xvfb-run --auto-servernum npm run test
- run: npm install -g @vscode/vsce
- run: vsce package -o "pyrsia_vs_code_`date +%Y_%m_%d`.vsix" --allow-star-activation

0 comments on commit 7dffccb

Please sign in to comment.