Skip to content

Commit

Permalink
🔧 Kreedzt - update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Kreedzt committed Dec 6, 2023
1 parent 1caa281 commit 8c886d3
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 35 deletions.
75 changes: 56 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,61 @@ on: [push, pull_request]

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
contents: read
pages: write
id-token: write

jobs:
test:
runs-on: ubuntu-latest
name: Test Coverage
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Nodejs
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install
run: npm i -g pnpm && pnpm i
- name: test coverage
run: pnpm run coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
test:
runs-on: ubuntu-latest
name: Test Coverage
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Nodejs
uses: actions/setup-node@v4
with:
node-version: '20.10.0'
- name: Install
run: npm i -g pnpm && pnpm i
- name: test coverage
run: pnpm run coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3

test-tauri:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.11.0

- name: setup node
uses: actions/setup-node@v4
with:
node-version: '20.10.0'
cache: 'pnpm'

- name: install Rust stable
uses: dtolnay/rust-toolchain@stable

- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: install frontend dependencies
run: pnpm install # change this to npm or pnpm depending on which one you use

- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37 changes: 21 additions & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# .github/workflows/release.yml
name: Release

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

on:
release:
types: [created]


jobs:
release:
strategy:
Expand All @@ -15,7 +20,21 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.11.0

- name: Sync node version and setup cache
uses: actions/setup-node@v4
with:
node-version: '20.10.0'
cache: 'pnpm' # Set this to npm, yarn or pnpm.

- name: Rust setup
uses: dtolnay/rust-toolchain@stable

- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
Expand All @@ -24,25 +43,11 @@ jobs:
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev
- name: Rust setup
uses: dtolnay/rust-toolchain@stable

- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: './src-tauri -> target'

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.11.0

- name: Sync node version and setup cache
uses: actions/setup-node@v3
with:
node-version: '20.10.0'
cache: 'pnpm' # Set this to npm, yarn or pnpm.

- name: Install app dependencies and build web
# Remove `&& yarn build` if you build your frontend in `beforeBuildCommand`
run: pnpm i && pnpm build # Change this to npm, yarn or pnpm.
Expand Down

0 comments on commit 8c886d3

Please sign in to comment.