fix: updated yPoint to show values upto 4 decimal points (#8) #22
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: Docker Hub | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - | |
| name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - | |
| name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '16.x' | |
| - | |
| name: Install dependencies | |
| run: npm install | |
| - | |
| name: npm Build | |
| run: npm run build | |
| - | |
| name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - | |
| name: Build and push | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| tags: peermetrics/web:latest | |
| push: true | |
| - name: Logout from Docker Hub | |
| run: docker logout |