Skip to content

Commit 93fb4bf

Browse files
committed
update ci
1 parent 3504331 commit 93fb4bf

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,26 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
node-version: [20.x]
14+
node-version: [24.x]
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v5
1919

2020
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v3
21+
uses: actions/setup-node@v6
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
cache: "npm"
2525

2626
- name: Install dependencies
2727
run: npm install
2828

29-
- name: Install Playwright dependencies
29+
- name: Install Playwright browsers
3030
run: npx playwright install
3131

32+
- name: Install Playwright dependencies
33+
run: npx playwright install-deps
34+
3235
- name: Run tests
3336
run: npm test

src/lib/types.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ export const versions = [
1515
index: 1,
1616
},
1717
{
18-
friendly: "1.21.9+",
19-
description: "'object' type added, allowing you to use non-character sprites",
20-
index: 2
18+
friendly: "1.21.9+",
19+
description:
20+
"'object' type added, allowing you to use non-character sprites",
21+
index: 2,
2122
},
2223
];
2324
export type BaseMinecraftText = Pick<

0 commit comments

Comments
 (0)