We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c49185 commit 60037a2Copy full SHA for 60037a2
.github/workflows/ci.yaml
@@ -124,6 +124,13 @@ jobs:
124
runs-on: ubuntu-latest
125
steps:
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-
134
- name: install wasm-pack
135
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
136
- name: install geckodriver
0 commit comments