chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 #503
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: Github Pull Request | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| test_pull_request: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: Install packages | |
| run: npm ci | |
| - name: Build TS into JS. | |
| run: npm run build | |
| - name: Test function outputs. | |
| run: npm run test |