fix(deps): update all non-major dependencies #486
This file contains 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: CI | |
on: push | |
jobs: | |
main: | |
name: Check, lint & test | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install R | |
uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: '4.3.2' | |
use-public-rspm: true | |
- name: Install R package dependencies | |
uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: local::. # Necessary to avoid object usage linter errors. | |
- name: R CMD check | |
if: always() | |
uses: r-lib/actions/check-r-package@v2 | |
with: | |
error-on: '"note"' | |
- name: Lint | |
if: always() | |
shell: Rscript {0} | |
run: lintr::lint_package() | |
env: | |
LINTR_ERROR_ON_LINT: true | |
- name: E2E test | |
if: always() | |
uses: cypress-io/github-action@v6 | |
with: | |
working-directory: js | |
start: yarn run-showcase | |
- name: Test coverage | |
shell: Rscript {0} | |
run: covr::codecov() |