Update pre-commit hook python-jsonschema/check-jsonschema to v0.37.0 #168
This file contains hidden or 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
| # SPDX-FileCopyrightText: 2024 Gnuxie <Gnuxie@protonmail.com> | |
| # | |
| # SPDX-License-Identifier: CC0-1.0 | |
| name: Checks | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Specifically use node LTS. | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "18" | |
| - run: npm install | |
| - run: npm run build | |
| - run: npm run lint |