Skip to content

Commit 54b7fd2

Browse files
authored
fix: set up node before pnpm in ci (#5)
1 parent 48a31d2 commit 54b7fd2

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
21+
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
22+
with:
23+
node-version: '24'
2124
- uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1
2225
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
2326
with:
@@ -39,6 +42,9 @@ jobs:
3942
runs-on: ubuntu-latest
4043
steps:
4144
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
45+
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
46+
with:
47+
node-version: '24'
4248
- uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1
4349
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
4450
with:

AGENTS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ working in this repo. Read it before touching code.
1212
- **Node:** v24 LTS, pinned via `.nvmrc` and `engines.node`.
1313
- **Conventional commits:** All commit messages and PR titles.
1414
Lefthook + commitlint enforce.
15+
- **Conventional branch names:** Use a conventional type prefix followed
16+
by a slash, such as `fix/`, `feat/`, `chore/`, `docs/`, or `refactor/`.
1517
- **Commit subject only.** Never add a commit body unless the user
1618
explicitly asks for one. The subject line is the whole message by
1719
default.

0 commit comments

Comments
 (0)