added tooltip for all the fields #204
This file contains hidden or 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: Checks | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| branches: | |
| - main | |
| - dev | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: "Use NodeJS 16" | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '16' | |
| - name: Install Dependencies | |
| run: | | |
| npm install | |
| npx lerna bootstrap | |
| - name: Run Build | |
| run: npx lerna run build | |
| - name: Run Test | |
| run: npx lerna run test |