-
Notifications
You must be signed in to change notification settings - Fork 22
152 lines (145 loc) · 3.6 KB
/
ci.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
name: ci
on:
push:
branches:
- master
pull_request:
jobs:
firefox:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 16.x
- uses: jetli/[email protected]
- name: npm install
run: |
npm install
- name: npm firefox
run: |
npm run build:v2-compat -- firefox
npm run build:firefox
mv dist/ firefox/
npm run clean
- name: artifact firefox
uses: actions/upload-artifact@v3
with:
name: firefox
path: firefox/**/*
firefox-dev:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 16.x
- uses: jetli/[email protected]
- name: npm install
run: |
npm install
- name: npm firefox-dev
run: |
npm run build:v2-compat -- firefox.dev
npm run build:firefox.dev
mv dist/ firefox-dev/
npm run clean
- name: artifact firefox-dev
uses: actions/upload-artifact@v3
with:
name: firefox-dev
path: firefox-dev/**/*
chrome:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 16.x
- uses: jetli/[email protected]
- name: npm install
run: |
npm install
- name: npm chrome
run: |
npm run build:v2-compat -- chrome
npm run build:chrome
mv dist/ chrome/
npm run clean
- name: artifact chrome
uses: actions/upload-artifact@v3
with:
name: chrome
path: chrome/**/*
chrome-dev:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 16.x
- uses: jetli/[email protected]
- name: npm install
run: |
npm install
- name: npm chrome-dev
run: |
npm run build:v2-compat -- chrome.dev
npm run build:chrome.dev
mv dist/ chrome-dev/
npm run clean
- name: artifact chrome-dev
uses: actions/upload-artifact@v3
with:
name: chrome-dev
path: chrome-dev/**/*
webext:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 16.x
- uses: jetli/[email protected]
- name: npm install
run: |
npm install
- name: npm webext
run: |
npm run build:v2-compat -- webext
npm run build:webext
mv dist/ webext/
npm run clean
- name: artifact webext
uses: actions/upload-artifact@v3
with:
name: webext
path: webext/**/*
webext-dev:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 16.x
- uses: jetli/[email protected]
- name: npm install
run: |
npm install
- name: npm webext-dev
run: |
npm run build:v2-compat -- webext.dev
npm run build:webext.dev
mv dist/ webext-dev/
npm run clean
- name: artifact webext-dev
uses: actions/upload-artifact@v3
with:
name: webext-dev
path: webext-dev/**/*