build(deps): bump typescript to 5.9.3 #133
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: Run faz tests | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: ["18", "20", "21", "22"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install dependencies | |
| # Solution from: https://stackoverflow.com/a/67740771/2887989 | |
| run: | | |
| export YARN_ENABLE_IMMUTABLE_INSTALLS=false | |
| corepack enable | |
| npm set version stable | |
| npm run yarn | |
| yarn install | |
| - name: Run vitest unit tests | |
| run: | | |
| npm test |