Skip to content

Withdrawal address validation #8

Withdrawal address validation

Withdrawal address validation #8

Workflow file for this run

name: Unit tests
on:
pull_request:
branches: [ main ]
jobs:
audit:
name: Checking
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Setup node and npm
uses: actions/setup-node@v3
with:
cache: npm
scope: '@stakewise'
node-version: '18.17.0'
registry-url: 'https://npm.pkg.github.com'
cache-dependency-path: '**/package-lock.json'
- name: Install npm dependencies
run: 'npm ci --ignore-scripts'
shell: bash
env:
NODE_AUTH_TOKEN: ${{ github.token }}
- name: Checking
run: npm run prepare && npm run test
shell: bash