build(deps-dev): bump typescript from 5.9.3 to 7.0.2 #500
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: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| - name: Install .NET SDK | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: "8.0.x" # latest LTS build | |
| - name: Install npm dependencies | |
| run: npm ci | |
| - name: Node Build | |
| env: | |
| FIGMA_ACCESS_TOKEN: ${{ secrets.FIGMA_ACCESS_TOKEN }} | |
| FIGMA_FILE_KEY: Z5yoO4WH58QDHvmxwMWhr0 | |
| run: npm run build | |
| - name: Run linters | |
| run: npm run lint | |
| - name: Validate package metadata | |
| run: npm run test:metadata | |
| - name: Validate npm package | |
| run: npm run test:package | |
| - name: Validate documentation site | |
| run: npm run test:site | |
| - name: .NET Build | |
| run: npm run build:nuget | |
| - name: .NET test | |
| run: npm run test:nuget |