🤖 feat(ci): added dependbot config file #12
Workflow file for this run
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: Build bytesto4t | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '22' | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Install Tauri CLI | |
run: npm install -g @tauri-apps/cli | |
- name: Install dependencies | |
run: npm install | |
- name: Build Svelte app | |
run: npm run build | |
- name: Build Tauri app | |
run: npm run tauri build | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '22' | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Install Tauri CLI | |
run: npm install -g @tauri-apps/cli | |
- name: Install dependencies | |
run: npm install | |
- name: Build Svelte app | |
run: npm run build | |
- name: Build Tauri app | |
run: npm run tauri build |