This repository was archived by the owner on Apr 2, 2026. It is now read-only.
Update dependency @types/node to v24 #159
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 |