Skip to content

TEST

TEST #318

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: TEST
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: "0 0 * * 3"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
USER1_FROM: ${{ secrets.USER1_FROM }}
USER2_FROM: ${{ secrets.USER2_FROM }}
USER1_PRIVATE_KEY: ${{ secrets.USER1_PRIVATE_KEY }}
USER2_PRIVATE_KEY: ${{ secrets.USER2_PRIVATE_KEY }}
ROOT_RPC: ${{ secrets.ROOT_RPC }}
GOERLI_ROOT_RPC: ${{ secrets.GOERLI_ROOT_RPC }}
ZKEVM_RPC: ${{ secrets.HERMEZ_RPC }}
MATIC_RPC: ${{ secrets.MATIC_RPC }}
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs a single command using the runners shell
- name: INSTALL
run: npm ci
# Runs a set of commands using the runners shell
- name: TEST
run: |
# echo "$USER1_FROM",
npm run build:test