mirror of
https://github.com/tauri-apps/tauri-action.git
synced 2026-01-31 00:35:20 +01:00
20 lines
353 B
YAML
20 lines
353 B
YAML
name: "test-action"
|
|
on: [pull_request, push]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: matrix.platform
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- run: |
|
|
yarn
|
|
yarn build
|
|
- uses: ./
|
|
with:
|
|
projectPath: ./example
|