Bean UI - Add clipboard support #287
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: SDK | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- "projects/sdk/**" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: SDK Tests | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
- name: Cache Node Modules | |
id: node-modules-cache | |
uses: actions/cache@v3 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: Install Dependencies | |
if: steps.node-modules-cache.outputs.cache-hit != 'true' | |
run: yarn install --immutable | |
- name: Install rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: wasm32-unknown-unknown | |
profile: minimal | |
override: true | |
- name: Install Anvil | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
# TODO: Cache Anvil RPC calls between runs to speed up tests | |
- name: Launch Anvil | |
run: anvil --fork-url $ANVIL_FORK_URL --chain-id 1337 & | |
env: | |
ANVIL_FORK_URL: ${{ secrets.ANVIL_FORK_URL }} | |
- name: Build All | |
run: yarn build | |
- run: yarn sdk:test | |
working-directory: projects/sdk |