Merge pull request #382 from mayfieldiv/rust-edition-2024 #841
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 TypeScript | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - test-action-new-cli | |
| pull_request: | |
| jobs: | |
| test-typescript: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: "24.1.0" # LTS | |
| - uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: "8.0.410" | |
| - name: Build Typescript runtime | |
| run: | | |
| yarn install | |
| yarn test | |
| yarn build | |
| working-directory: ./Runtime/TypeScript | |
| - name: Build and run tests | |
| run: | | |
| yarn install | |
| bash compile-schemas.sh | |
| yarn test | |
| working-directory: ./Laboratory/TypeScript |