Skip to content

adding f_normalize specs #114

adding f_normalize specs

adding f_normalize specs #114

Workflow file for this run

# name: Build App
# on:
# pull_request:
# branches:
# - main
# # jobs:
# build:
# strategy:
# fail-fast: false
# matrix:
# node-version: [16]
# platform: [macos-latest, ubuntu-latest, windows-latest]
# runs-on: ${{ matrix.platform }}
# steps:
# - uses: actions/checkout@v2
# - uses: pnpm/action-setup@v2.0.1
# with:
# version: 6.20.3
# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v2
# with:
# node-version: ${{ matrix.node-version }}
# cache: 'pnpm'
# - name: Install Rust stable
# uses: actions-rs/toolchain@v1
# with:
# toolchain: stable
# - name: Install dependencies (ubuntu only)
# if: matrix.platform == 'ubuntu-latest'
# run: |
# sudo apt-get update
# sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf libasound2-dev
# - name: Install node modules
# run: pnpm install
# - uses: tauri-apps/tauri-action@v0
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}