build(deps): update dependency semantic-release to v25 #676
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
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| name: test | |
| jobs: | |
| format-and-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| run: ./script/setup.bash bun pwsh | |
| - name: Install | |
| run: bun install --frozen-lockfile | |
| - name: Format | |
| run: bun format | |
| - name: Lint | |
| run: bun lint | |
| test-linux: | |
| needs: format-and-lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| run: ./script/setup.bash bun pwsh | |
| - name: Install | |
| run: bun install --frozen-lockfile | |
| - name: Test | |
| run: bun test | |
| test-macos: | |
| needs: format-and-lint | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| run: ./script/setup.bash bun pwsh | |
| - name: Install | |
| run: bun install --frozen-lockfile | |
| - name: Test | |
| run: bun test | |
| test-windows: | |
| needs: format-and-lint | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| run: ./script/setup.ps1 bun | |
| - name: Install | |
| run: bun install --frozen-lockfile | |
| - name: Test | |
| run: bun test |