chore: update NEWS for 0.4.0 release #236
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 | |
permissions: | |
contents: read | |
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.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: Install Node.js 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 JavaScript | |
if: always() | |
run: yarn lint | |
working-directory: js | |
- name: Run Cypress | |
if: always() | |
uses: cypress-io/github-action@v5 | |
with: | |
start: yarn start-e2e-test-app | |
working-directory: js | |
record: true | |
spec: cypress/e2e/e2e-test/*.js | |
config: baseUrl=http://localhost:8887 | |
env: | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
- name: Run Cypress on example Dashboard | |
if: always() | |
uses: cypress-io/github-action@v5 | |
with: | |
start: yarn start-e2e-router-app | |
working-directory: js | |
record: true | |
spec: cypress/e2e/dashboard/*.js | |
config: baseUrl=http://localhost:8886 | |
env: | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
- name: Test coverage | |
run: | | |
Rscript -e 'covr::codecov()' |