Skip to content

prog; implement webview ui and monorepo #23

prog; implement webview ui and monorepo

prog; implement webview ui and monorepo #23

Workflow file for this run

name: Moonrepo CI
on:
push:
branches: ["main"]
paths:
- "crates/**"
- ".github/workflows/**"
pull_request:
branches: ["main"]
paths:
- "crates/**"
- ".github/workflows/**"
jobs:
package:
strategy:
matrix:
include:
- { name: windows, os: windows-latest, cross-target: "" }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Fetch all git history
run: git fetch --force --prune --tags --unshallow
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ matrix.name }}-${{ matrix.cross-target }}
- uses: 'moonrepo/setup-toolchain@v0'
- run: 'moon ci'