chore(deps): update dependency node to v24 #291
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Templates Test | |
| on: | |
| pull_request: | |
| branches: [ main, 'releases/**' ] | |
| push: | |
| branches: [ main, 'releases/**' ] | |
| jobs: | |
| test-templates: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm i | |
| - name: Test TypeScript template | |
| run: | | |
| echo "Testing TypeScript template..." | |
| npm run test:template start-with-typescript "npm i" "npm test" | |
| - name: Test REST template | |
| run: | | |
| echo "Testing REST template..." | |
| npm run test:template start-with-rest "echo \"REST template test coming soon\"" | |
| - name: Test MCP template | |
| run: | | |
| echo "Testing MCP template..." | |
| npm run test:template add-mcp "echo \"Testing MCP augmentation template\"" |