[dev server] Never bundle sin #13
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 | |
| on: [push, pull_request] | |
| jobs: | |
| test-windows: | |
| name: windows-latest | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: | | |
| iex (irm install.sinjs.com) | |
| sin test -d | |
| shell: pwsh | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| test-macos: | |
| name: macos-latest | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: | | |
| source <(curl -fsSL install.sinjs.com) | |
| sin test -d | |
| shell: zsh {0} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| test-linux: | |
| name: ubuntu-latest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: | | |
| source <(curl -fsSL install.sinjs.com) | |
| sin test -d | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |