ON-457: add grant role event test #24
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: Build | ||
on: | ||
push: | ||
branches: ['*', '!master', '!dev', '!qa'] | ||
jobs: | ||
build_test_deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: npm | ||
node-version: 16 | ||
registry-url: 'https://npm.pkg.github.com' | ||
scope: '@oriumnetwork' | ||
- name: Install Dependencies | ||
run: npm ci | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.GHB_TOKEN }} | ||
# Goerli | ||
- name: Goerli Code Generator | ||
run: npm run codegen-goerli | ||
- name: Goerli Build | ||
run: npm run build-goerli | ||
- name: Goerli Test | ||
run: npm run test-goerli | ||