feat(cta): add SolidJS recipe (#2619)

Co-authored-by: Amr Bashir <48618675+amrbashir@users.noreply.github.com>
This commit is contained in:
David D
2021-09-22 09:42:58 -04:00
committed by GitHub
parent 943e6fe3b2
commit 71ea86a443
5 changed files with 87 additions and 10 deletions

View File

@@ -5,30 +5,30 @@
name: test create-tauri-app
env:
RUST_BACKTRACE: 1
TAURI_RECIPE: 'vanillajs,cra,vite,ngcli'
TAURI_RECIPE: 'vanillajs,cra,vite,ngcli,solid'
on:
workflow_dispatch:
inputs:
platform:
default: "ubuntu"
default: 'ubuntu'
pull_request:
paths:
- "tooling/create-tauri-app/**"
- 'tooling/create-tauri-app/**'
jobs:
create-recipe-with-npm:
name: "node@${{ matrix.node }} + npm@${{ matrix.manager }}"
name: 'node@${{ matrix.node }} + npm@${{ matrix.manager }}'
runs-on: ${{ github.event.inputs.platform || 'ubuntu' }}-latest
strategy:
fail-fast: false
matrix:
node: ["14", "16"]
manager: ["7"]
node: ['14', '16']
manager: ['7']
exclude:
- node: "16"
manager: "6"
- node: '16'
manager: '6'
steps:
- uses: actions/checkout@v2
@@ -61,7 +61,7 @@ jobs:
- run: yarn test
working-directory: tooling/create-tauri-app
env:
TAURI_RUN_MANAGER: "npm"
TAURI_RUN_MANAGER: 'npm'
# create-recipe-with-yarn:
# name: "node@${{ matrix.node }} + yarn@1"