File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,13 @@ jobs:
124124 runs-on : ubuntu-latest
125125 steps :
126126 - 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-
127134 - name : install wasm-pack
128135 run : curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
129136 - name : install geckodriver
Original file line number Diff line number Diff line change 2424 "dev" : " webpack-dev-server -d" ,
2525 "build" : " webpack" ,
2626 "dist" : " webpack --mode production" ,
27- "test" : " webpack && cd ../tests && pipenv run pytest"
27+ "test" : " webpack --mode production && cd ../tests && pipenv run pytest"
2828 },
2929 "repository" : {
3030 "type" : " git" ,
You can’t perform that action at this time.
0 commit comments