fix: js lint #71
Workflow file for this run
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@v3 | |
- name: Install R | |
uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: '4.2.1' | |
- 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: Install Node.js, npm and Yarn | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: yarn | |
cache-dependency-path: js | |
- name: Install Node.js dependencies | |
run: yarn install | |
working-directory: js | |
- name: R CMD check | |
if: always() | |
uses: r-lib/actions/check-r-package@v2 | |
with: | |
error-on: '"note"' | |
- name: Lint R | |
if: always() | |
run: ./lint.R | |
- name: Lint JavaScript | |
if: always() | |
run: yarn lint | |
working-directory: js | |
- name: Test JavaScript | |
if: always() | |
run: yarn test | |
working-directory: js | |
- name: Test coverage | |
run: | | |
Rscript -e 'covr::codecov()' |