Skip to content

Commit

Permalink
Add GitHub action that builds the extension
Browse files Browse the repository at this point in the history
  • Loading branch information
vthemelis committed Jun 1, 2024
1 parent 282b989 commit f49d83a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: bun install
- run: bun run compile
Binary file modified bun.lockb
Binary file not shown.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "bun ./node_modules/vscode/bin/install",
"test": "bun run compile && bun ./node_modules/vscode/bin/test",
"lint": "tslint --force -p .",
"prepublish": "bun run compile",
Expand Down

0 comments on commit f49d83a

Please sign in to comment.