fix: exclude vitest files when running ng serve #30
This file contains hidden or 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
| # This is a basic workflow to help you get started with Actions name: 'Tauri Build' | |
| name: 'Tauri Build' | |
| # Controls when the action will run. | |
| on: | |
| # Triggers the workflow on push or pull request events but only for the main branch | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: [macos-latest, ubuntu-22.04, windows-latest] | |
| # The type of runner that the job will run on | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js 22 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Cache Node modules | |
| uses: actions/cache@v4 | |
| with: | |
| # npm cache files are stored in ~/.npm | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: Setup Rust toolchain (stable) | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| # Only required targets will be downloaded depending on platform | |
| targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} | |
| # ---------------------------- | |
| # MACOS ONLY FIX | |
| # ---------------------------- | |
| - name: Install macOS dependencies | |
| if: matrix.platform == 'macos-latest' | |
| run: | | |
| brew install gnu-tar coreutils | |
| echo "Homebrew dependencies installed" | |
| # ---------------------------- | |
| # UBUNTU ONLY | |
| # ---------------------------- | |
| - name: Install dependencies (Linux only) | |
| if: matrix.platform == 'ubuntu-22.04' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| libgtk-3-dev \ | |
| libappindicator3-dev \ | |
| librsvg2-dev \ | |
| patchelf \ | |
| libsoup-3.0 \ | |
| libwebkit2gtk-4.1-dev | |
| - name: Install Node dependencies | |
| run: npm install | |
| - name: Check lint | |
| run: npm run lint | |
| - name: Run unit tests (Linux only) | |
| if: matrix.platform == 'ubuntu-22.04' | |
| uses: GabrielBB/xvfb-action@v1 | |
| with: | |
| run: npm run test | |
| # ---------------------------- | |
| # BUILD TAURI | |
| # ---------------------------- | |
| - name: Build Tauri app | |
| uses: tauri-apps/tauri-action@v0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |