Skip to content

Commit 0fc70de

Browse files
committed
feat: added CI and release notes
1 parent 9ea5396 commit 0fc70de

2 files changed

Lines changed: 28 additions & 4 deletions

File tree

.github/workflows/vscodepublish.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
on: push
2-
name: 'Release Vscode Plugin'
2+
name: "Release Vscode Plugin"
33
jobs:
44
npmInstall:
55
name: npm install
66
runs-on: ubuntu-latest
77
steps:
88
- uses: actions/checkout@master
9-
- name: npm install
10-
uses: actions/npm@master
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-node@v1
1111
with:
12-
args: install --unsafe-perm
12+
node-version: 12
13+
- run: yarn
14+
- run: yarn lint
15+
- run: yarn compile
1316
- name: Master
1417
uses: actions/bin/filter@master
1518
with:

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
sudo: true
2+
3+
language: node_js
4+
5+
node_js:
6+
- 10
7+
8+
cache:
9+
directories:
10+
- node_modules
11+
12+
before_install:
13+
- npm i -g github-release-from-changelog
14+
15+
deploy:
16+
- provider: script
17+
github_token: $GITHUB_TOKEN
18+
script: github-release-from-changelog
19+
skip_cleanup: true
20+
on:
21+
tags: true

0 commit comments

Comments
 (0)