chore: update angluar to v17 and templates to latest tauri (#544) #776
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2019-2022 Tauri Programme within The Commons Conservancy | |
# SPDX-License-Identifier: Apache-2.0 | |
# SPDX-License-Identifier: MIT | |
name: test create-tauri-app | |
on: | |
push: | |
branches: | |
- dev | |
paths: | |
- '.github/workflows/cli-test.yml' | |
- 'packages/cli/**' | |
- 'Cargo.lock' | |
- 'Cargo.toml' | |
pull_request: | |
paths: | |
- '.github/workflows/cli-test.yml' | |
- 'packages/cli/**' | |
- 'Cargo.lock' | |
- 'Cargo.toml' | |
env: | |
RUST_BACKTRACE: 1 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-without-node-cli: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: [1.59, stable] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- run: cargo test --exclude create-tauri-app-node --workspace | |
test-only-node-cli: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: cargo test --package create-tauri-app-node |