File tree Expand file tree Collapse file tree 6 files changed +54
-22
lines changed Expand file tree Collapse file tree 6 files changed +54
-22
lines changed Original file line number Diff line number Diff line change 1818^webpack\.config\.js$
1919^yarn\.lock$
2020^logo\.svg$
21+ ^\.github$
Original file line number Diff line number Diff line change 1+ * .html
Original file line number Diff line number Diff line change 1+ # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2+ # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3+ on :
4+ push :
5+ branches : [main, master]
6+ pull_request :
7+ branches : [main, master]
8+
9+ name : R-CMD-check
10+
11+ jobs :
12+ R-CMD-check :
13+ runs-on : ${{ matrix.config.os }}
14+
15+ name : ${{ matrix.config.os }} (${{ matrix.config.r }})
16+
17+ strategy :
18+ fail-fast : false
19+ matrix :
20+ config :
21+ - {os: macos-latest, r: 'release'}
22+ - {os: windows-latest, r: 'release'}
23+ - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
24+ - {os: ubuntu-latest, r: 'release'}
25+ - {os: ubuntu-latest, r: 'oldrel-1'}
26+
27+ env :
28+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
29+ R_KEEP_PKG_SOURCE : yes
30+
31+ steps :
32+ - uses : actions/checkout@v3
33+
34+ - uses : r-lib/actions/setup-pandoc@v2
35+
36+ - uses : r-lib/actions/setup-r@v2
37+ with :
38+ r-version : ${{ matrix.config.r }}
39+ http-user-agent : ${{ matrix.config.http-user-agent }}
40+ use-public-rspm : true
41+
42+ - uses : r-lib/actions/setup-r-dependencies@v2
43+ with :
44+ extra-packages : any::rcmdcheck
45+ needs : check
46+
47+ - uses : r-lib/actions/check-r-package@v2
48+ with :
49+ upload-snapshots : true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,8 +16,7 @@ knitr::opts_chunk$set(
1616```
1717
1818[ ![ CRAN_Status_Badge] ( https://www.r-pkg.org/badges/version/reactR )] ( https://cran.r-project.org/package=reactR )
19- [ ![ Travis-CI Build Status] ( https://travis-ci.org/react-R/reactR.svg?branch=master )] ( https://travis-ci.org/react-R/reactR )
20- [ ![ Slack Status] ( https://reactr-slackin.herokuapp.com/badge.svg )] ( https://reactr-slackin.herokuapp.com/ )
19+ [ ![ R-CMD-check] ( https://github.com/react-R/reactR/actions/workflows/R-CMD-check.yaml/badge.svg )] ( https://github.com/react-R/reactR/actions/workflows/R-CMD-check.yaml )
2120
2221` reactR ` provides a set of convenience functions for using [ ` React ` ] ( https://reactjs.org/ ) in ` R ` with ` htmlwidget ` constructor templates and local JavaScript dependencies. The ` React ` ecosystem is rich with components that can enhance ` R ` web and Shiny apps. ` scaffoldReactWidget() ` helps build ` htmlwidgets ` to integrate these ` React ` components as ` R ` ` htmlwidgets ` . ` scaffoldReactShinyInput() ` does the same for ` Shiny ` inputs. The local dependency functions are modeled after the ` html_dependency_* ` functions from RStudio's [ ` rmarkdown ` ] ( https://github.com/rstudio/rmarkdown ) package.
2322
Original file line number Diff line number Diff line change 33
44<!-- README.md is generated from README.Rmd. Please edit that file -->
55
6- [ ![ CRAN\_ Status\_ Badge] ( https://www.r-pkg.org/badges/version/reactR )] ( https://cran.r-project.org/package=reactR )
7- [ ![ Travis-CI Build
8- Status] ( https://travis-ci.org/react-R/reactR.svg?branch=master )] ( https://travis-ci.org/react-R/reactR )
9- [ ![ Slack
10- Status] ( https://reactr-slackin.herokuapp.com/badge.svg )] ( https://reactr-slackin.herokuapp.com/ )
6+ [ ![ CRAN_Status_Badge] ( https://www.r-pkg.org/badges/version/reactR )] ( https://cran.r-project.org/package=reactR )
7+ [ ![ R-CMD-check] ( https://github.com/react-R/reactR/actions/workflows/R-CMD-check.yaml/badge.svg )] ( https://github.com/react-R/reactR/actions/workflows/R-CMD-check.yaml )
118
129` reactR ` provides a set of convenience functions for using
1310[ ` React ` ] ( https://reactjs.org/ ) in ` R ` with ` htmlwidget ` constructor
You can’t perform that action at this time.
0 commit comments