blob: dd3d6266f01485ffe9c0960774f5a0618bb22af1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
name: vscode-playground
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: examples/vscode-playground
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.x"
- uses: actions/setup-node@v2
with:
node-version: "16"
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('examples/vscode-playground/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: |
npm i
npm i vsce
- name: Lint
run: npx eslint src/*.ts
- name: Compile
run: npm run compile
- name: Replace package.json version
run: |
replace_packagejson_version() {
version_line=$(grep -o '"version".*' $1)
version=$(python -m json.tool package.json | awk -F'"' '/version/{print $4}')
build_version=$version+$2
build_version_line=${version_line/$version/$build_version}
sed -i "s|$version_line|$build_version_line|g" $1
cat $1
}
replace_packagejson_version package.json $GITHUB_RUN_ID
- name: Build VSIX
run: npx vsce package
- name: Validate VSIX
run: |
npx vsce ls | grep package.json
npx vsce ls | grep out/extension.js
- name: Upload VSIX
uses: actions/upload-artifact@v2
with:
name: vscode-playground-vsix
# The path must be rooted from the directory GitHub Actions starts
# from, not the working-directory.
path: examples/vscode-playground/*.vsix
if-no-files-found: error
|