Skip to content

Commit

Permalink
Create test-build-vue.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ni55aN authored Feb 1, 2024
1 parent 86fbd72 commit 13370f8
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/test-build-vue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test Vue build
run-name: Test Vue build for ${{ inputs.os }}

on:
workflow_call:
inputs:
os:
description: 'OS'
required: true
type: string
workflow_dispatch:
inputs:
os:
description: 'OS'
required: true
type: choice
options:
- ubuntu-latest
- windows-latest
- macos-latest

jobs:
vue:
name: Vue
strategy:
fail-fast: false
max-parallel: 3
matrix:
version: [3,2]
uses: ./.github/workflows/test-build.yml
with:
os: ${{ inputs.os }}
stack: vue
version: ${{ matrix.version }}
node: 18
features: "Vue render,${{ vars.FEATURES }}"

0 comments on commit 13370f8

Please sign in to comment.