File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 20
20
AhMyth-Server
21
21
runs-on : ubuntu-latest
22
22
steps :
23
+ - name : Cache node_modules
24
+ uses : actions/cache@v2
25
+ with :
26
+ path : ~/.npm
27
+ key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
28
+ restore-keys : |
29
+ ${{ runner.os }}-node-
30
+ - name : Cache Electron
31
+ uses : actions/cache@v1
32
+ with :
33
+ path : ${{ github.workspace }}/.cache/electron
34
+ key : ${{ runner.os }}-electron-cache-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }}
35
+ restore-keys : |
36
+ ${{ runner.os }}-electron-cache-
37
+
38
+ - name : Cache Electron-Builder
39
+ uses : actions/cache@v1
40
+ with :
41
+ path : ${{ github.workspace }}/.cache/electron-builder
42
+ key : ${{ runner.os }}-electron-builder-cache-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json'')) }}
43
+ restore-keys : |
44
+ ${{ runner.os }}-electron-builder-cache-
45
+
23
46
- name : Install apt dependencies (need for Windows build)
24
47
run : |
25
48
apt update && sudo apt-get install --no-install-recommends -y wine mono gcc-multilib g++-multilib
You can’t perform that action at this time.
0 commit comments