Test configure-build #25
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 configure-build!! | |
| on: | |
| push: | |
| # This prevents tag pushes from triggering this workflow | |
| branches: ['*'] | |
| pull_request: | |
| release: | |
| types: [published] | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: "Version" | |
| default: "" | |
| will_publish_packages: | |
| description: "Publish packages?" | |
| default: "false" | |
| jobs: | |
| run: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: | |
| - name: Windows x64 | |
| os: windows-latest | |
| rid: win-x64 | |
| - name: Ubuntu 22.04 x64 | |
| os: ubuntu-22.04 | |
| rid: linux-x64 | |
| name: Test setup-bonsai on ${{matrix.platform.name}} | |
| runs-on: ${{matrix.platform.os}} | |
| steps: | |
| - name: Configure build | |
| uses: NgrDavid/configure-build@main | |
| env: | |
| NODE_OPTIONS: --enable-source-maps |