diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index adaf2d9..7f6bb71 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -28,6 +28,18 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install system dependencies + run: | + sudo apt-get update + sudo apt-get install -y \ + tesseract-ocr \ + tesseract-ocr-eng \ + libtesseract-dev \ + libleptonica-dev \ + pkg-config \ + libclang-dev \ + clang + - name: Setup Node.js uses: actions/setup-node@v4 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e200ffa..94edbe7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,7 +34,14 @@ jobs: - name: Install system dependencies run: | sudo apt-get update - sudo apt-get install -y tesseract-ocr tesseract-ocr-eng libtesseract-dev libleptonica-dev pkg-config + sudo apt-get install -y \ + tesseract-ocr \ + tesseract-ocr-eng \ + libtesseract-dev \ + libleptonica-dev \ + pkg-config \ + libclang-dev \ + clang - name: Cache Rust dependencies uses: actions/cache@v3