Skip to content

update admin-portal 6.122.0 #1726

update admin-portal 6.122.0

update admin-portal 6.122.0 #1726

Workflow file for this run

name: Push Workflow
on:
# When after commit pushed to branches not master nad release/next
push:
branches-ignore:
- 'master'
- 'release/next'
env:
CI: true
jobs:
init:
name: 'Install, Build and Test'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Use Node.js (.nvmrc)
uses: actions/setup-node@v1
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
- run: make clean
- run: make install
- run: make build