update admin-portal 6.142.0 #1755
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: 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 |