File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
template/base/.github/workflows Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 9898 path: ./**/*.so
9999 key: {% raw %} ${{ runner.os }}-builds-${{ github.sha }}{% endraw %}
100100
101+ - name: Save Dumped Accounts For Client Jobs
102+ uses: actions/cache/save@v4
103+ with:
104+ path: ./target/deploy/*.json
105+ key: {% raw %} ${{ runner.os }}-accounts-${{ github.sha }}{% endraw %}
106+
101107 test_programs:
102108 name: Test Programs
103109 runs-on: ubuntu-latest
@@ -188,6 +194,12 @@ jobs:
188194 path: ./**/*.so
189195 key: {% raw %} ${{ runner.os }}-builds-${{ github.sha }}{% endraw %}
190196
197+ - name: Restore Dumped Accounts For Client Jobs
198+ uses: actions/cache/restore@v4
199+ with:
200+ path: ./target/deploy/*.json
201+ key: {% raw %} ${{ runner.os }}-accounts-${{ github.sha }}{% endraw %}
202+
191203 - name: Test Client JS
192204 run: pnpm clients:js:test
193205{% endif %}
You can’t perform that action at this time.
0 commit comments