|
12 | 12 |
|
13 | 13 | jobs: |
14 | 14 | lint-build: |
15 | | - strategy: |
16 | | - matrix: |
17 | | - node-version: [22.x] |
18 | | - |
19 | 15 | runs-on: ubuntu-latest |
20 | 16 | steps: |
21 | 17 | - uses: actions/checkout@v5 |
22 | 18 |
|
23 | | - - name: Use Node.js ${{ matrix.node-version }} |
| 19 | + - name: Use Node.js |
24 | 20 | uses: actions/setup-node@v5 |
25 | 21 | with: |
26 | | - node-version: ${{ matrix.node-version }} |
| 22 | + node-version: 'lts/*' |
27 | 23 | check-latest: true |
28 | 24 | package-manager-cache: false |
29 | 25 |
|
|
42 | 38 |
|
43 | 39 | - name: lint |
44 | 40 | run: bun run lint |
45 | | - |
46 | | - # lint-build-mastra: |
47 | | - # strategy: |
48 | | - # matrix: |
49 | | - # node-version: [22.x] |
50 | | - |
51 | | - # runs-on: ubuntu-latest |
52 | | - # steps: |
53 | | - # - uses: actions/checkout@v5 |
54 | | - |
55 | | - # - name: Use Node.js ${{ matrix.node-version }} |
56 | | - # uses: actions/setup-node@v4 |
57 | | - # with: |
58 | | - # node-version: ${{ matrix.node-version }} |
59 | | - # check-latest: true |
60 | | - |
61 | | - # - uses: pnpm/action-setup@v4 |
62 | | - # name: Install pnpm |
63 | | - # with: |
64 | | - # run_install: | |
65 | | - # - recursive: true |
66 | | - # args: [--no-frozen-lockfile] |
67 | | - # cwd: agents/agent-mastra |
68 | | - # - args: [--global, esbuild] |
69 | | - # package_json_file: agents/agent-mastra/package.json |
70 | | - |
71 | | - # - uses: oven-sh/setup-bun@v2 |
72 | | - |
73 | | - # - name: lint |
74 | | - # working-directory: agents/agent-mastra |
75 | | - # run: bun run lint |
76 | | - |
77 | | - # - name: build |
78 | | - # working-directory: agents/agent-mastra |
79 | | - # run: bun run build |
80 | | - |
81 | | - # lint-build-mastra-mcp-client: |
82 | | - # strategy: |
83 | | - # matrix: |
84 | | - # node-version: [22.x] |
85 | | - |
86 | | - # runs-on: ubuntu-latest |
87 | | - # steps: |
88 | | - # - uses: actions/checkout@v5 |
89 | | - |
90 | | - # - name: Use Node.js ${{ matrix.node-version }} |
91 | | - # uses: actions/setup-node@v4 |
92 | | - # with: |
93 | | - # node-version: ${{ matrix.node-version }} |
94 | | - # check-latest: true |
95 | | - |
96 | | - # - uses: pnpm/action-setup@v4 |
97 | | - # name: Install pnpm |
98 | | - # with: |
99 | | - # run_install: | |
100 | | - # - recursive: true |
101 | | - # args: [--no-frozen-lockfile] |
102 | | - # cwd: mpc/clients/mastra-mcp-client |
103 | | - # - args: [--global, esbuild] |
104 | | - # package_json_file: mpc/clients/mastra-mcp-client/package.json |
105 | | - |
106 | | - # - uses: oven-sh/setup-bun@v2 |
107 | | - |
108 | | - # - name: lint |
109 | | - # working-directory: mpc/clients/mastra-mcp-client |
110 | | - # run: bun run lint |
111 | | - |
112 | | - # - name: build |
113 | | - # working-directory: mpc/clients/mastra-mcp-client |
114 | | - # run: bun run build |
0 commit comments