build: bump .nvmrc to 20 to match engines.node (#1423) #196
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: Check generated files | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{github.workflow}}-${{github.ref}} | |
| cancel-in-progress: true | |
| jobs: | |
| edr-op-chain-configs: | |
| name: Check that op-chain config files are up to date | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout EDR repo | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Rust & install nightly rustfmt | |
| uses: ./.github/actions/setup-rust | |
| with: | |
| toolchain: nightly | |
| components: rustfmt | |
| - name: Run op-chain-config command that updates chains config | |
| run: cargo op-chain-config | |
| - name: Check that there are no uncommitted changes | |
| run: cargo op-chain-config -- --check | |
| - name: Notify failure | |
| if: failure() | |
| uses: slackapi/slack-github-action@45a88b9581bfab2566dc881e2cd66d334e621e2c # v3.0.3 | |
| with: | |
| webhook: ${{ secrets.GH_ACTION_NOTIFICATIONS_SLACK_WEBHOOK_URL }} | |
| webhook-type: webhook-trigger | |
| payload: | | |
| { | |
| "workflow_name": "${{ github.workflow }}", | |
| "run_url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | |
| } |