-
Notifications
You must be signed in to change notification settings - Fork 2
150 lines (115 loc) · 4.32 KB
/
SessionStorage-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
name: SessionStorage-CI
on: [push]
jobs:
install:
name: Install dependencies
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3.0.7
env:
cache-name: cached-npm-deps
with:
path: ./node_modules
key: ${{ hashFiles('./package.json') }}
- name: Install required dependencies on cache miss (npm)
if: steps.cache-npm.outputs.cache-hit != 'true'
run: |
npm install
verify:
name: Verify the sources
runs-on: windows-latest
needs: install
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
- name: Cache
uses: actions/cache@v3.0.7
with:
path: ./node_modules
key: ${{ hashFiles('./package.json') }}
- name: Run ESLint on the sources
run: npm run lint
pre-build-package-verify:
name: Verify the package before build
runs-on: windows-latest
needs: [verify, pre-build-package-compile-cross-platform]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
- name: Pull the npm dependencies
uses: actions/cache@v3.0.7
with:
path: ./node_modules
key: ${{ hashFiles('./package.json') }}
- name: Pull the compiled sources
uses: actions/cache@v3.0.7
with:
path: ./platforms
key: ${{ hashFiles('./package.json') }}-${{ hashFiles('./platforms/mozilla/app/manifest.json') }}-${{ hashFiles('./platforms/chromium/app/manifest.json') }}
- name: Verify the package for Mozilla
run: npx web-ext --source-dir "./platforms/mozilla/app" lint
pre-build-package-compile-cross-platform:
name: Compile the sources before build
runs-on: windows-latest
needs: [verify]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
- name: Pull the npm dependencies
uses: actions/cache@v3.0.7
with:
path: ./node_modules
key: ${{ hashFiles('./package.json') }}
- name: Compile sources for Mozilla engine
run: npm run deploy-mozilla
- name: Compile sources for Chromium engine
run: npm run deploy-chromium
- name: Cache
uses: actions/cache@v3.0.7
with:
path: ./platforms
key: ${{ hashFiles('./package.json') }}-${{ hashFiles('./platforms/mozilla/app/manifest.json') }}-${{ hashFiles('./platforms/chromium/app/manifest.json') }}
build-cross-platform:
name: Build the release package
runs-on: windows-latest
needs: [pre-build-package-verify, pre-build-package-compile-cross-platform]
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
- name: Pull the npm dependencies
uses: actions/cache@v3.0.7
with:
path: ./node_modules
key: ${{ hashFiles('./package.json') }}
- name: Pull the compiled sources
uses: actions/cache@v3.0.7
with:
path: ./platforms
key: ${{ hashFiles('./package.json') }}-${{ hashFiles('./platforms/mozilla/app/manifest.json') }}-${{ hashFiles('./platforms/chromium/app/manifest.json') }}
- name: Build the release package of Mozilla engine
run: npx web-ext build --source-dir "./platforms/mozilla/app" --overwrite-dest
- name: Store the built package
uses: actions/upload-artifact@v2
with:
name: release-candidate-package-mozilla
path: ./web-ext-artifacts/*
- name: Build the release package of Chromium engine
run: npx web-ext build --source-dir "./platforms/chromium/app" --overwrite-dest
- name: Store the built package
uses: actions/upload-artifact@v2
with:
name: release-candidate-package-chromium
path: ./web-ext-artifacts/*