From 13370f874684a664fe85545c8ba31e53f7a05375 Mon Sep 17 00:00:00 2001 From: Vitaliy Stoliarov Date: Thu, 1 Feb 2024 23:46:01 +0200 Subject: [PATCH] Create test-build-vue.yml --- .github/workflows/test-build-vue.yml | 36 ++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/test-build-vue.yml diff --git a/.github/workflows/test-build-vue.yml b/.github/workflows/test-build-vue.yml new file mode 100644 index 0000000..c057095 --- /dev/null +++ b/.github/workflows/test-build-vue.yml @@ -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 }}"