mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 09:17:20 +00:00
0ce74872c4
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3 to 4. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23 lines
435 B
YAML
23 lines
435 B
YAML
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@v3
|
|
- name: Setup nodejs
|
|
uses: actions/setup-node@v4
|
|
- name: Install packages
|
|
run: npm install ajv
|
|
- name: linter
|
|
run: node ./utils/reply_schema_linter.js
|
|
|