Skip to content

Commit dafb18f

Browse files
build action
1 parent 8e83abc commit dafb18f

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: build
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
with:
12+
node-version: '10'
13+
- run: sudo npm install -g vsce
14+
- run: npm install
15+
- run: npm run compile
16+
- run: vsce package

0 commit comments

Comments
 (0)