-
-
Notifications
You must be signed in to change notification settings - Fork 91
126 lines (104 loc) · 3.45 KB
/
main.yml
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
name: build
on:
push:
branches:
- 'master'
pull_request:
branches:
- '*'
jobs:
build:
name: ${{ matrix.os }} ${{ matrix.version }}
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, 'skip ci')"
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
version: ['stable', 'insiders']
steps:
- name: Clone repository
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '~16.20.1'
- name: Install Dependencies
run: 'yarn install --frozen-lockfile || yarn install --frozen-lockfile'
shell: bash
- name: Compile sources for tests
run: yarn run test-compile
- name: Cache VSCode binary
id: cache-vscode
uses: actions/cache@v1
with:
path: .vscode-test
key: vscode-${{ runner.os }}-${{ matrix.version }}-${{ github.run_id }}
restore-keys: |
vscode-${{ runner.os }}-${{ matrix.version }}-
vscode-${{ runner.os }}-
- name: Run tests
uses: coactions/setup-xvfb@v1
with:
run: yarn test
env:
CODE_VERSION: ${{ matrix.version }}
continue-on-error: ${{ matrix.version == 'insiders' }}
- name: Release
if: startsWith(matrix.os, 'ubuntu') && matrix.version == 'stable' && github.ref == 'refs/heads/master' && github.repository == 'JohnstonCode/svn-scm'
run: |
yarn run organize
yarn run semantic-release
env:
VSCE_TOKEN: ${{ secrets.vsceToken }}
GITHUB_TOKEN: ${{ secrets.githubToken }}
GH_TOKEN: ${{ secrets.githubToken }}
GIT_AUTHOR_EMAIL: ${{ secrets.gitEmail }}
GIT_COMMITTER_EMAIL: ${{ secrets.gitEmail }}
GIT_AUTHOR_NAME: ${{ secrets.gitName }}
GIT_COMMITTER_NAME: ${{ secrets.gitName }}
eslint:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip ci')"
steps:
- name: Clone repository
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '~16.20.1'
- name: Install Dependencies
run: 'yarn install --frozen-lockfile || yarn install --frozen-lockfile'
shell: bash
- name: Lint check
run: yarn run lint --silent -- -f stylish
artifact:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip ci')"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '~16.20.1'
- name: Install Dependencies
run: 'yarn install --frozen-lockfile || yarn install --frozen-lockfile'
shell: bash
- name: Package extension
run: npx vsce package -o svn-scm.vsix
- name: Upload artifact
uses: actions/upload-artifact@v1
with:
name: "svn-scm-${{ github.sha }}.vsix"
path: "svn-scm.vsix"
- name: Package open-vsx extension
run: |
yarn add iconv-lite jschardet
npx vsce package -o svn-scm-ovsx.vsix
- name: Upload open-vsx artifact
uses: actions/upload-artifact@v1
with:
name: "svn-scm-ovsx-${{ github.sha }}.vsix"
path: "svn-scm-ovsx.vsix"