feat: add hardfork storage to metadata contract #3820
Workflow file for this run
This file contains 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: E2E Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [ opened, synchronize, reopened ] | |
merge_group: | |
workflow_dispatch: | |
inputs: | |
dispatch: | |
type: string | |
description: "Dispatch contains pr context that want to trigger e2e test" | |
required: true | |
jobs: | |
dispatch-build: | |
if: contains(github.event_name, 'workflow_dispatch') | |
runs-on: ubuntu-latest | |
outputs: | |
output-sha: ${{ steps.escape_multiple_lines_test_inputs.outputs.result }} | |
steps: | |
- name: Generate axon-bot token | |
if: contains(github.event_name, 'workflow_dispatch') && | |
github.repository_owner == 'axonweb3' && github.event.inputs.dispatch != 'regression' | |
id: generate_axon_bot_token | |
uses: wow-actions/use-app-token@v2 | |
with: | |
app_id: ${{ secrets.AXON_BOT_APP_ID }} | |
private_key: ${{ secrets.AXON_BOT_PRIVATE_KEY }} | |
- name: Event is dispatch | |
if: contains(github.event_name, 'workflow_dispatch') && | |
github.repository_owner == 'axonweb3' && github.event.inputs.dispatch != 'regression' | |
uses: actions/github-script@v6 | |
id: get_sha | |
with: | |
github-token: ${{ steps.generate_axon_bot_token.outputs.BOT_TOKEN }} | |
script: | | |
const dispatch = JSON.parse(`${{ github.event.inputs.dispatch }}`); | |
const pr = ( | |
await github.rest.pulls.get({ | |
owner: dispatch.repo.owner, | |
repo: dispatch.repo.repo, | |
pull_number: dispatch.issue.number, | |
}) | |
).data.head; | |
github.rest.repos.createCommitStatus({ | |
state: 'pending', | |
owner: dispatch.repo.owner, | |
repo: dispatch.repo.repo, | |
context: '${{ github.workflow }}', | |
sha: pr.sha, | |
target_url: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}' | |
}) | |
return pr.sha | |
- name: Escape multiple lines test inputs | |
if: contains(github.event_name, 'workflow_dispatch') && | |
github.repository_owner == 'axonweb3' && github.event.inputs.dispatch != 'regression' | |
id: escape_multiple_lines_test_inputs | |
run: | | |
inputs=${{ steps.get_sha.outputs.result}} | |
inputs="${inputs//'%'/'%25'}" | |
inputs="${inputs//'\n'/'%0A'}" | |
inputs="${inputs//'\r'/'%0D'}" | |
echo "result=$inputs" >> $GITHUB_OUTPUT | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ steps.escape_multiple_lines_test_inputs.outputs.result || 'main' }} | |
- uses: lyricwulf/abc@v1 | |
with: | |
linux: m4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
cache: "yarn" | |
cache-dependency-path: "tests/e2e/yarn.lock" | |
- name: E2E Tests Linting | |
run: make e2e-test-lint | |
- name: E2E Tests | |
run: make e2e-test-ci | |
finally: | |
name: Finally | |
needs: [ dispatch-build ] | |
if: always() && contains(github.event_name, 'workflow_dispatch') && | |
github.event.inputs.dispatch != 'regression' && github.repository_owner == 'axonweb3' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate axon-bot token | |
id: generate_axon_bot_token | |
uses: wow-actions/use-app-token@v2 | |
with: | |
app_id: ${{ secrets.AXON_BOT_APP_ID }} | |
private_key: ${{ secrets.AXON_BOT_PRIVATE_KEY }} | |
- if: contains(join(needs.*.result, ';'), 'failure') || contains(join(needs.*.result, ';'), 'cancelled') | |
run: exit 1 | |
- uses: actions/github-script@v6 | |
if: ${{ always() }} | |
with: | |
github-token: ${{ steps.generate_axon_bot_token.outputs.BOT_TOKEN }} | |
script: | | |
github.rest.repos.createCommitStatus({ | |
state: '${{ job.status }}', | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
context: '${{ github.workflow }}', | |
sha: '${{ needs.dispatch-build.outputs.output-sha }}', | |
target_url: 'https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}' | |
}) | |
build: | |
if: | | |
(contains(fromJson('["dependabot[bot]" ]'), github.actor) && github.event_name == 'pull_request') || | |
(contains(github.event_name, 'push') && github.ref == 'refs/heads/main' ) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: lyricwulf/abc@v1 | |
with: | |
linux: m4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
cache: "yarn" | |
cache-dependency-path: "tests/e2e/yarn.lock" | |
- name: E2E Tests Linting | |
run: make e2e-test-lint | |
- name: E2E Tests | |
run: make e2e-test-ci |