Adds TSGO #2
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: Test on ts-go | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true # Ensures submodules are cloned | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: "lts/*" | |
| cache: npm | |
| - run: npm ci | |
| - run: npx tsgo && node ./lib/build.js |