Refactor dependencies to use latest versions and update CI workflows … #777
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: safe-modules-4337-gas-metering | |
on: | |
push: | |
paths: | |
- 'modules/4337/**' | |
- 'examples/4337-gas-metering/**' | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- run: | | |
pnpm run --filter "@safe-global/safe-modules-example-4337-gas-metering" fmt:check | |
pnpm run --filter "@safe-global/safe-modules-example-4337-gas-metering" lint | |
pnpm run --filter "@safe-global/safe-modules-example-4337-gas-metering" build |