mirror of
https://github.com/tauri-apps/tauri-forage.git
synced 2026-02-06 03:31:19 +01:00
23 lines
384 B
YAML
23 lines
384 B
YAML
name: test library
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
test-inliner:
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 3
|
|
- name: test
|
|
timeout-minutes: 15
|
|
run: |
|
|
yarn
|
|
yarn test
|