Fix memory leak on rdbload error #23
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: Reply-schemas linter | |
on: | |
push: | |
paths: | |
- 'src/commands/*.json' | |
pull_request: | |
paths: | |
- 'src/commands/*.json' | |
jobs: | |
reply-schemas-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup nodejs | |
uses: actions/setup-node@v4 | |
- name: Install packages | |
run: npm install ajv | |
- name: linter | |
run: node ./utils/reply_schema_linter.js | |