ci(website-deploy): override commit-message to ASCII to dodge wrangle… #135
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 | |
| # Skip when only website/, docs, or markdown files change — those are | |
| # either deployed by website-deploy.yml or have no impact on the package. | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths-ignore: | |
| - "website/**" | |
| - "docs/**" | |
| - "**/*.md" | |
| push: | |
| branches: [main] | |
| paths-ignore: | |
| - "website/**" | |
| - "docs/**" | |
| - "**/*.md" | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run lint | |
| - run: npm run build |