Files
website/.gitea/workflows/lint.yaml
Renovate Bot 7a67a9160a
Some checks failed
Build / build (push) Has been cancelled
Lint / lint (push) Has been cancelled
Update actions/setup-node action to v5 (#4)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-node](https://github.com/actions/setup-node) | action | major | `v4` -> `v5` |

---

### Release Notes

<details>
<summary>actions/setup-node (actions/setup-node)</summary>

### [`v5`](https://github.com/actions/setup-node/compare/v4...v5)

[Compare Source](https://github.com/actions/setup-node/compare/v4...v5)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMTYuNSIsInVwZGF0ZWRJblZlciI6IjQxLjExNi41IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->

Reviewed-on: #4
Co-authored-by: Renovate Bot <renovate-bot@valverde.cloud>
Co-committed-by: Renovate Bot <renovate-bot@valverde.cloud>
2025-09-18 01:54:59 +02:00

22 lines
456 B
YAML

name: Lint
run-name: Lint
on:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Set up Bun
uses: oven-sh/setup-bun@v1
- name: Set up Node
uses: actions/setup-node@v5
with:
node-version: "22.19.0"
- name: Checkout
uses: actions/checkout@v5
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint TypeScript
run: npm run lint:tsc