chore: Remove wylerchain sepolia #1296
Workflow file for this run
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: Cache build artifacts | |
on: | |
pull_request: | |
branches: ["master"] | |
types: | |
- opened | |
- reopened | |
- synchronize | |
# we skip ci for draft PRs | |
# https://github.com/reviewdog/action-eslint/issues/29#issuecomment-985939887 | |
- ready_for_review | |
workflow_call: | |
env: | |
NEXT_PUBLIC_RPC_PROVIDER: alchemy | |
NEXT_PUBLIC_INFURA_KEY: ${{ secrets.NEXT_PUBLIC_INFURA_KEY }} | |
NEXT_PUBLIC_ALCHEMY_KEY: ${{ secrets.NEXT_PUBLIC_ALCHEMY_KEY }} | |
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID }} | |
THE_GRAPH_NETWORK_API_KEY: ${{ secrets.THE_GRAPH_NETWORK_API_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
check-build-cache: | |
name: Check cache for build artifacts | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check cache for build artifacts | |
id: cache | |
uses: actions/cache/restore@v4 | |
with: | |
path: | | |
./packages/app/build | |
key: build-artifacts-${{ github.run_id }} | |
- name: Install node_modules | |
if: steps.cache.outputs.cache-hit != 'true' | |
uses: OffchainLabs/actions/node-modules/install@main | |
- name: Build | |
if: steps.cache.outputs.cache-hit != 'true' | |
shell: bash | |
run: yarn build | |
env: | |
NEXT_PUBLIC_IS_E2E_TEST: true | |
NEXT_PUBLIC_RPC_PROVIDER: alchemy | |
NEXT_PUBLIC_INFURA_KEY: ${{ secrets.NEXT_PUBLIC_INFURA_KEY }} | |
NEXT_PUBLIC_ALCHEMY_KEY: ${{ secrets.NEXT_PUBLIC_ALCHEMY_KEY }} | |
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID }} | |
THE_GRAPH_NETWORK_API_KEY: ${{ secrets.THE_GRAPH_NETWORK_API_KEY }} | |
- name: Cache build artifacts | |
if: steps.cache.outputs.cache-hit != 'true' | |
uses: actions/cache/save@v4 | |
with: | |
path: | | |
./packages/app/build | |
key: build-artifacts-${{ github.run_id }} |