build(deps-dev): bump nodemon from 3.0.1 to 3.0.2 #859
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: pr | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
dependency-review: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Dependency Review | |
uses: actions/dependency-review-action@v3 | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- name: Cache node_modules | |
uses: actions/cache@v3 | |
with: | |
path: | | |
**/node_modules | |
key: | | |
node-${{ hashfiles('**/package-lock.json') }} | |
restore-keys: | | |
node- | |
- name: Install Packages | |
run: npm install | |
- name: Format | |
run: npm run format | |
- name: Lint | |
run: npm run lint | |
# Enable in production | |
# - name: Test | |
# run: npm test |