File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed
Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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] ;
2324export type BaseMinecraftText = Pick <
You can’t perform that action at this time.
0 commit comments