Skip to content

[ID-1769] fix: Passport zkEVM Provider denotes ethAddress from user session #169

[ID-1769] fix: Passport zkEVM Provider denotes ethAddress from user session

[ID-1769] fix: Passport zkEVM Provider denotes ethAddress from user session #169

Workflow file for this run

name: Build and Cache SDK
on:
pull_request:
merge_group:
jobs:
build-cache-sdk:
name: Build and Cache SDK
runs-on: ubuntu-latest-4-cores
env:
NODE_OPTIONS: --max-old-space-size=14366
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Cache node_modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-build-cache-deps-${{ hashFiles('yarn.lock') }}
# - name: Build
# run: yarn build
# - name: Cache build artifacts
# uses: actions/cache@v4
# with:
# path: |
# ./sdk
# ./packages
# key: ${{ runner.os }}-build-cache-${{ github.sha }}