Bump @types/node from 25.9.5 to 26.1.2 #151
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 Master Branch | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| FORCE_COLOR: "1" | |
| TERM: "xterm-256color" | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| # - name: Install Bun | |
| # run: | | |
| # curl -fsSL https://bun.sh/install | bash | |
| # echo "$HOME/.bun/bin" >> $GITHUB_PATH | |
| - name: Set up Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Run master tests | |
| run: bun run test |