Skip to content

fix(deps): update all non-major dependencies #385

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #385

Workflow file for this run

name: CI
on: push
jobs:
main:
name: Check, lint & test
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install R
uses: r-lib/actions/setup-r@v2
with:
r-version: '4.2.0'
- 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"'
env:
_R_CHECK_LICENSE_: 'FALSE' # We are using a proprietary license.
- name: Lint
if: always()
shell: Rscript {0}
run: |
lints <- lintr::lint_package()
for (lint in lints) print(lint)
quit(status = length(lints) > 0)
- name: E2E test
if: always()
uses: cypress-io/github-action@v4
with:
working-directory: js
start: yarn run-showcase
- name: Test coverage
run: |
Rscript -e 'covr::codecov()'