From c8618ba22f872834a02c92853485e9f46f1ef804 Mon Sep 17 00:00:00 2001 From: Alice Pote Date: Wed, 31 May 2023 14:45:46 -0400 Subject: [PATCH] chore(ci): add Stencil v4 and latest versions to CI matrix --- .github/workflows/main.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ac54a88..5e99234 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ on: jobs: build: - name: (build stencil ${{ matrix.stencil_version }}) + name: (stencil-sass with Stencil version ${{ matrix.stencil_version }}) strategy: matrix: # Run two different versions in parallel: @@ -18,8 +18,12 @@ jobs: # Stencil team as a source of truth # 2. 2 - will install the latest release under major version 2 of Stencil. This should be kept as long as this # library supports Stencil v2.Y.Z - stencil_version: ['DEFAULT', '2'] - + # 3. v4-next - will install a pre-release version of Stencil v4, and is used to detect any regressions in a + # pre-release of v4.0.0. + # 4. latest - will install the latest version of Stencil. Prior to the Stencil v4.0.0 release, this will + # resolve to the latest version of Stencil v3. After the Stencil v4.0.0 release, it will resolve to the latest + # version of Stencil v4. + stencil_version: ['DEFAULT', '2', 'v4-next', 'latest'] runs-on: ubuntu-latest steps: