Update modules/4337/contracts/experimental/verifiers/WebAuthnVerifier… #75
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: safe-modules-4337-passkey-example | |
on: | |
push: | |
paths: | |
- 'modules/4337/**' | |
- 'modules/passkey/**' | |
- 'examples/4337-passkeys/**' | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: npm | |
cache-dependency-path: package-lock.json | |
- run: | | |
npm ci | |
# Build the 4337 module so the app can use the artifacts | |
npm run build -w modules/4337 | |
# Reinstall the dependencies so the 4337 dependency includes artifacts | |
npm ci | |
npm run lint -w examples/4337-passkeys | |
npm run build -w examples/4337-passkeys | |
env: | |
VITE_WC_CLOUD_PROJECT_ID: ${{ secrets.VITE_WC_CLOUD_PROJECT_ID }} | |
VITE_WC_4337_BUNDLER_URL: ${{ secrets.VITE_WC_4337_BUNDLER_URL }} |