Skip to content

Commit

Permalink
ci: add build for WASM
Browse files Browse the repository at this point in the history
  • Loading branch information
adamblake committed Nov 10, 2023
1 parent 7a603b1 commit 5858932
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build-wasm.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
on:
push:
paths-ignore:
- "*.md"
- "*.Rmd"
- ".vscode/**"
- "bin/**"
branches:
- main
- release/*
- hotfix/*
pull_request:
branches:
- develop
- release/*
- hotfix/*
paths-ignore:
- "*.md"
- "*.Rmd"
- ".vscode/**"
- "bin/**"
workflow_dispatch:

name: Build WASM R package

jobs:
build:
runs-on: ubuntu-latest
container: ghcr.io/r-wasm/webr:main
steps:
- uses: actions/checkout@v3
- name: Build wasm packages
uses: r-wasm/actions/build-wasm-packages@v1

0 comments on commit 5858932

Please sign in to comment.