Set MACOSX_DEPLOYMENT_TARGET #311
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
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| name: Check WASM build | |
| jobs: | |
| build-wasm: | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up R | |
| uses: r-lib/actions/setup-r@v2 | |
| with: | |
| use-public-rspm: true | |
| - name: Tweak | |
| run: | | |
| cd R-package && Rscript bootstrap.R | |
| - name: Build wasm packages | |
| uses: r-wasm/actions/build-rwasm@main | |
| with: | |
| packages: "local::./R-package" |