fix: Add new hope desc #606
Workflow file for this run
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: Check | |
on: | |
merge_group: | |
pull_request: | |
branches: | |
- dev | |
- main | |
jobs: | |
run: | |
name: Check Health | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install | |
run: npm ci --no-audit | |
- name: Lerna bootstrap | |
run: npx lerna bootstrap | |
- name: Lint | |
run: | | |
npm run lint |