chore(deps): update dependency nodemon to v3.1.9 #1783
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: Build and Test | |
on: | |
push: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
steps: | |
- name: Build and test | |
uses: myrotvorets/composite-actions/build-test-nodejs@master | |
with: | |
node-version: lts/* | |
registry-url: https://npm.pkg.github.com | |
lint: | |
name: Check Code Style | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
steps: | |
- name: Run code style check | |
uses: myrotvorets/composite-actions/node-run-script@master | |
with: | |
registry-url: https://npm.pkg.github.com | |
script: lint | |
typecheck: | |
name: Check Types | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
steps: | |
- name: Run type check | |
uses: myrotvorets/composite-actions/node-run-script@master | |
with: | |
registry-url: https://npm.pkg.github.com | |
script: typecheck |