File tree Expand file tree Collapse file tree 5 files changed +6320
-3851
lines changed
Expand file tree Collapse file tree 5 files changed +6320
-3851
lines changed Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88
99 steps :
10- - uses : actions/checkout@v4
10+ - uses : actions/checkout@v5
1111
1212 - name : Setup Node.js
13- uses : actions/setup-node@v3
13+ uses : actions/setup-node@v6
1414 with :
15- node-version : 21
16-
17- - name : Install pnpm
18- run : |
19- corepack enable
20- corepack prepare pnpm@latest --activate
15+ node-version : 24
2116
2217 - name : Install dependencies
23- run : pnpm install
18+ run : npm ci
2419
2520 - name : Lint
26- run : pnpm lint
21+ run : npm run lint
2722
2823 test :
2924 runs-on : ubuntu-latest
3025
3126 steps :
32- - uses : actions/checkout@v4
27+ - uses : actions/checkout@v5
3328
3429 - name : Setup Node.js
35- uses : actions/setup-node@v3
30+ uses : actions/setup-node@v6
3631 with :
3732 node-version : 21
3833
39- - name : Install pnpm
40- run : |
41- corepack enable
42- corepack prepare pnpm@latest --activate
43-
4434 - name : Install dependencies
45- run : pnpm install
35+ run : npm ci
4636
4737 - name : Test
48- run : pnpm test
38+ run : npm run test
4939
5040 build :
5141 runs-on : ubuntu-latest
5242
5343 steps :
54- - uses : actions/checkout@v4
44+ - uses : actions/checkout@v5
5545
5646 - name : Setup Node.js
57- uses : actions/setup-node@v3
47+ uses : actions/setup-node@v6
5848 with :
5949 node-version : 21
6050
61- - name : Install pnpm
62- run : |
63- corepack enable
64- corepack prepare pnpm@latest --activate
65-
6651 - name : Install dependencies
67- run : pnpm install
52+ run : npm ci
6853
6954 - name : Build
70- run : pnpm build
55+ run : npm run build
Original file line number Diff line number Diff line change 1+ import { configApp } from '@adonisjs/eslint-config'
2+ export default configApp ( )
You can’t perform that action at this time.
0 commit comments