feat: generate skills to workspace root with composable naming and YAML frontmatter #74
Workflow file for this run
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: Examples Integration | |
| on: | |
| pull_request: | |
| branches: [ main, v1 ] | |
| paths: | |
| - 'examples/**' | |
| - 'graphql/codegen/**' | |
| workflow_dispatch: | |
| jobs: | |
| examples-types: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 10 | |
| - run: pnpm install | |
| - name: Build codegen and dependencies | |
| run: pnpm run build | |
| - run: pnpm -r --filter @constructive-io/examples-codegen-integration run test:codegen |