chore(api): v1.4.3 #921
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: E2E Test | |
on: | |
push: | |
pull_request: | |
env: | |
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} | |
jobs: | |
run-e2e-test: | |
name: Run e2e test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: yarn install | |
- name: Build packages | |
run: | | |
yarn workspace @protocolink/common build | |
yarn workspace @protocolink/core build | |
yarn workspace @protocolink/test-helpers build | |
yarn workspace @protocolink/smart-accounts build | |
yarn workspace @protocolink/api build | |
- name: Run e2e test | |
run: yarn test:e2e |