Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test yml fix #130

Open
wants to merge 6 commits into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,16 @@ jobs:
- uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
- name: check
uses: actions/cache@v3
with:
node-version: 18
- name: install Rust stable
uses: actions/cache@v3
- name: rust tool
uses: dtolnay/rust-toolchain@stable
- name: update rustup
uses: actions/cache@v3
- name: xxx
run: rustup target add wasm32-unknown-unknown
- name: install dependencies (fedora only)
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
- uses: actions/cache@v3
- run : |
sudo apt install libwebkit2gtk-4.0-dev \
run : |
sudo apt update && sudo apt install libwebkit2gtk-4.0-dev \
build-essential \
curl \
wget \
Expand All @@ -47,8 +40,7 @@ jobs:
cmake \
build-essential
- name: install rust dependencies and build it
uses: actions/cache@v3
- run: cargo install wasm-pack tauri-cli
run: cargo install wasm-pack tauri-cli
- name: building wasm-frontend-package
run: cd ./frontend && yarn install && yarn wasm
- name: building tauri-app
Expand Down