update verax portal address #457
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: Tests | |
on: | |
push: | |
branches: ["main", "dev"] | |
pull_request: | |
branches: ["main", "dev"] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
env: | |
PRIVATE_KEY: "0x0fd6767c661a6a144a78cce98bf64aab13c48bd7fc595f80ca7148cf58688cca" # random private key | |
ADDRESS: "0xbAd15e99f9A94DbF931Ae788e10eA8350025b18a" # random address | |
ENVIRONMENT: dev | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- run: npm ci | |
- run: npm test |