chore: adjust tsconfig.json (probably for typescript compilation with… #15
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: Test | |
on: | |
push: | |
paths: | |
- "src/**" | |
- "src-tauri/**" | |
- "app-icon.png" | |
- "package-lock.json" | |
- "tsconfig.json" | |
- "vite.config.js" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "npm" | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- run: >- | |
sudo apt-get update && | |
sudo apt-get install -y | |
libgtk-3-dev | |
libayatana-appindicator3-dev | |
libwebkit2gtk-4.0-dev | |
libleptonica-dev | |
libtesseract-dev | |
webkit2gtk-driver | |
xvfb | |
- run: npm ci | |
- run: npm run build | |
- run: npm run tauri icon | |
- uses: actions/cache@v3 | |
with: | |
key: test-${{ hashFiles('src-tauri/Cargo.lock') }} | |
path: | | |
src-tauri/target | |
~/.cargo | |
- run: xvfb-run npm run test |