File tree 2 files changed +8
-1
lines changed 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,13 @@ jobs:
124
124
runs-on : ubuntu-latest
125
125
steps :
126
126
- uses : actions/checkout@master
127
+ - name : Cache cargo dependencies
128
+ uses : actions/cache@v1
129
+ with :
130
+ key : ${{ runner.os }}-wasm-${{ hashFiles('**/Cargo.lock') }}
131
+ path : target
132
+ restore-keys : |
133
+ ${{ runner.os }}-wasm-
127
134
- name : install wasm-pack
128
135
run : curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
129
136
- name : install geckodriver
Original file line number Diff line number Diff line change 24
24
"dev" : " webpack-dev-server -d" ,
25
25
"build" : " webpack" ,
26
26
"dist" : " webpack --mode production" ,
27
- "test" : " webpack && cd ../tests && pipenv run pytest"
27
+ "test" : " webpack --mode production && cd ../tests && pipenv run pytest"
28
28
},
29
29
"repository" : {
30
30
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments