Install Node.js in container before checkout
Some checks failed
Deploy Lakehouse Docs / build-and-deploy (push) Failing after 7s
Lint & Format Check / Link Check (push) Successful in 12s
Lint & Format Check / Format Check (styler) (push) Failing after 16s
R Package Tests / test (push) Successful in 1m32s

This commit is contained in:
2026-02-22 19:43:43 -05:00
parent e781eb3703
commit 1d0202e3aa
3 changed files with 20 additions and 0 deletions

View File

@@ -14,6 +14,11 @@ jobs:
image: rocker/verse:4.4
steps:
- name: Install Node.js (required for actions/checkout)
run: |
apt-get update -y
apt-get install -y nodejs
- name: Checkout repository
uses: actions/checkout@v3

View File

@@ -12,6 +12,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Node.js (required for actions/checkout)
run: |
apt-get update -y
apt-get install -y nodejs
- name: Checkout
uses: actions/checkout@v3
@@ -38,6 +43,11 @@ jobs:
image: rocker/tidyverse:4.4
steps:
- name: Install Node.js (required for actions/checkout)
run: |
apt-get update -y
apt-get install -y nodejs
- name: Checkout
uses: actions/checkout@v3

View File

@@ -13,6 +13,11 @@ jobs:
image: rocker/tidyverse:4.4
steps:
- name: Install Node.js (required for actions/checkout)
run: |
apt-get update -y
apt-get install -y nodejs
- name: Checkout
uses: actions/checkout@v3