fix(compose-file):updated mysql version, added health chk, volume #26
Workflow file for this run
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: Node Hapi Template CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request_target: | |
| jobs: | |
| build_and_test: | |
| name: Build & Test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Lint | |
| run: yarn lint | |
| - name: Build | |
| run: yarn build:dev | |
| - name: Test | |
| run: yarn test |