chore(deps): update dependency husky to v9 #364
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: Pull Request Build | |
on: | |
pull_request: | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
registry-url: 'https://registry.npmjs.org' | |
- run: npm -v | |
- run: npm install -g npm@7 | |
- run: npm -v | |
- run: npm install | |
- run: npm install --workspaces | |
- run: npm run build | |
- run: npm run doc | |
- run: npm run coverage |