We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5988c51 commit 485f99cCopy full SHA for 485f99c
.github/workflows/test-smokes.yml
@@ -29,7 +29,7 @@ jobs:
29
- name: Set up R
30
uses: r-lib/actions/setup-r@v2
31
with:
32
- r-version: "4.1.0"
+ r-version: "4.2.2"
33
34
- name: Install node (for Playwright)
35
uses: actions/setup-node@v3
@@ -53,11 +53,11 @@ jobs:
53
${{ runner.os }}-1-renv-
54
55
- name: Restore packages
56
+ working-directory: tests
57
run: |
- pushd tests
58
- Rscript -e "if (!requireNamespace('renv', quietly = TRUE)) install.packages('renv')"
59
- Rscript -e "renv::restore()"
60
- popd
+ if (!requireNamespace('renv', quietly = TRUE)) install.packages('renv')
+ renv::restore()
+ shell: Rscript {0}
61
62
- name: Set up Python
63
uses: actions/setup-python@v4
0 commit comments