feat: add Hardhat PVM setup recipe for Polkadot Hub #22
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Create an Account | |
| on: | |
| push: | |
| branches: [master] | |
| paths: | |
| - 'polkadot-docs/chain-interactions/create-account/**' | |
| - '!polkadot-docs/chain-interactions/create-account/README.md' | |
| - 'versions.yml' | |
| pull_request: | |
| paths: | |
| - 'polkadot-docs/chain-interactions/create-account/**' | |
| - '!polkadot-docs/chain-interactions/create-account/README.md' | |
| - 'versions.yml' | |
| workflow_dispatch: | |
| jobs: | |
| guard: | |
| if: github.repository == 'polkadot-developers/polkadot-cookbook' | |
| runs-on: ubuntu-latest | |
| outputs: | |
| should-run: ${{ steps.check.outputs.should-run }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - id: check | |
| uses: ./.github/actions/check-version-keys | |
| with: | |
| event-name: ${{ github.event_name }} | |
| base-sha: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event.before }} | |
| head-sha: ${{ github.sha }} | |
| test: | |
| needs: guard | |
| if: needs.guard.outputs.should-run == 'true' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Load versions | |
| id: versions | |
| run: | | |
| echo "POLKADOT_JS_UTIL_CRYPTO_VERSION=$(yq '.javascript_packages.polkadot_js_util_crypto.version' versions.yml)" >> $GITHUB_OUTPUT | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install npm dependencies | |
| run: | | |
| cd polkadot-docs/chain-interactions/create-account | |
| npm ci | |
| npm install --save-exact \ | |
| @polkadot/keyring@${{ steps.versions.outputs.POLKADOT_JS_UTIL_CRYPTO_VERSION }} \ | |
| @polkadot/util-crypto@${{ steps.versions.outputs.POLKADOT_JS_UTIL_CRYPTO_VERSION }} | |
| - name: Run tests | |
| run: | | |
| cd polkadot-docs/chain-interactions/create-account | |
| npm test | |
| timeout-minutes: 5 | |
| post-test: | |
| needs: [guard, test] | |
| if: github.repository == 'polkadot-developers/polkadot-cookbook' && needs.guard.outputs.should-run == 'true' && always() && github.ref == 'refs/heads/master' | |
| uses: ./.github/workflows/post-cleanup.yml | |
| with: | |
| test_result: ${{ needs.test.result }} | |
| readme_path: 'polkadot-docs/chain-interactions/create-account/README.md' | |
| workflow_name: 'Create an Account' | |
| permissions: | |
| contents: read | |
| issues: write |