mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 18:54:58 +00:00
0a51ceca88
Node.js 16 actions are deprecated. To result them we are updating to actions/checkout@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. e.g. failure https://github.com/valkey-io/valkey/actions/runs/8482578610 --------- Signed-off-by: ICHINOSE Shogo <shogo82148@gmail.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@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
|
|
|