chore: bump to v0.3.9, fix websiteUrl to docs, add v0.4 sprint plan #65
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: CI | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| validate: | |
| name: Validate package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - run: npm ci --ignore-scripts | |
| - name: Validate server.json | |
| run: node -e "const s = require('./server.json'); console.log('server.json OK:', s.name, s.version)" | |
| - name: Check dist entrypoint | |
| run: node --check dist/server.js && echo "dist/server.js syntax OK" | |