Fix(python) token_path declaration - Update 15_use_paymaster.py #11
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: Run tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
branch: main | |
types: [ opened, reopened, synchronize ] | |
permissions: | |
contents: read # for checkout | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/*" | |
- name: Install dependencies | |
run: cd js && yarn install | |
- name: Run local-setup | |
run: | | |
git clone https://github.com/matter-labs/local-setup.git | |
pushd local-setup | |
docker-compose up -d | |
popd | |
- name: Wait for local-setup to be ready | |
run: cd js && yarn test:wait | |
- name: Prepare environment | |
run: cd js && yarn test:prepare | |
- name: Run tests | |
run: cd js && yarn test |