Skip to content

Commit bd921e1

Browse files
fix: tweak release pipeline
1 parent f7775ca commit bd921e1

File tree

4 files changed

+85
-54
lines changed

4 files changed

+85
-54
lines changed

.github/workflows/actions/get-core-dependencies/action.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,10 @@ description: 'sets the node version & initializes core dependencies'
33
runs:
44
using: composite
55
steps:
6-
# this overrides previous versions of the node runtime that was set.
7-
# jobs that need a different version of the Node runtime should explicitly
8-
# set their node version after running this step
9-
- name: Use Node Version from Volta
6+
- name: Use Node from NVM
107
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
118
with:
12-
node-version-file: './package.json'
9+
node-version-file: '.nvmrc'
1310
cache: 'npm'
1411

1512
- name: Install Dependencies

.github/workflows/main.yml

+44-45
Original file line numberDiff line numberDiff line change
@@ -28,48 +28,47 @@ jobs:
2828
runs-on: ubuntu-latest
2929

3030
steps:
31-
- name: Checkout Code
32-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
33-
with:
34-
persist-credentials: false
35-
- name: Use Node from Volta
36-
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
37-
with:
38-
node-version-file: 'package.json'
39-
cache: 'npm'
40-
- name: Install Dependencies
41-
run: npm ci
42-
shell: bash
43-
- name: Prettier Check
44-
run: npm run prettier.dry-run
45-
shell: bash
46-
- name: Install Stencil ${{matrix.stencil_version}}
47-
run: npm install --save-dev @stencil/core@${{matrix.stencil_version}}
48-
shell: bash
49-
if: ${{ matrix.stencil_version != 'DEFAULT' }}
50-
- name: Report Stencil Version
51-
run: npm ls @stencil/core
52-
shell: bash
53-
- name: Build
54-
run: npm run build
55-
shell: bash
56-
- name: Test
57-
run: npm run test.ci
58-
shell: bash
59-
- name: Create Symlink
60-
run: npm link
61-
shell: bash
62-
- name: Enter test-app Directory
63-
run: cd test-app
64-
shell: bash
65-
- name: Install test-app Dependencies
66-
run: npm install
67-
shell: bash
68-
- name: Link Stencil Store
69-
run: npm link @stencil/store
70-
- name: Build test-app
71-
run: npm run build
72-
shell: bash
73-
- name: Test test-app
74-
run: npm test
75-
shell: bash
31+
- name: Checkout Code
32+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
33+
with:
34+
persist-credentials: false
35+
36+
- name: Get Core Dependencies
37+
uses: ./.github/workflows/actions/get-core-dependencies
38+
39+
- name: Test
40+
run: npm run test
41+
42+
- name: Install Stencil ${{matrix.stencil_version}}
43+
run: npm install --save-dev @stencil/core@${{matrix.stencil_version}}
44+
shell: bash
45+
if: ${{ matrix.stencil_version != 'DEFAULT' }}
46+
- name: Report Stencil Version
47+
run: npm ls @stencil/core
48+
shell: bash
49+
50+
- name: Build
51+
run: npm run build
52+
shell: bash
53+
54+
- name: Create Symlink
55+
run: npm link
56+
shell: bash
57+
58+
- name: Enter test-app Directory
59+
run: cd test-app
60+
shell: bash
61+
62+
- name: Install test-app Dependencies
63+
run: npm install
64+
shell: bash
65+
66+
- name: Link Stencil Store
67+
run: npm link @stencil/store
68+
- name: Build test-app
69+
run: npm run build
70+
shell: bash
71+
72+
- name: Test test-app
73+
run: npm test
74+
shell: bash

.github/workflows/release-dev.yml

+36-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,32 @@ name: 'Dev Release'
22

33
on:
44
workflow_dispatch:
5-
# Make this a reusable workflow, no value needed
6-
# https://docs.github.com/en/actions/using-workflows/reusing-workflows
5+
inputs:
6+
releaseType:
7+
description: "Release type - major, minor or patch"
8+
required: true
9+
type: choice
10+
default: "patch"
11+
options:
12+
- patch
13+
- minor
14+
- major
15+
devRelease:
16+
description: Set to "yes" to release a dev build
17+
required: true
18+
type: choice
19+
default: "no"
20+
options:
21+
- "yes"
22+
- "no"
723

824
jobs:
925
build_stencil_store:
1026
name: Build
1127
uses: ./.github/workflows/build.yml
1228

1329
get_dev_version:
30+
if: inputs.devRelease == 'yes'
1431
name: Get Dev Build Version
1532
runs-on: ubuntu-latest
1633
outputs:
@@ -37,6 +54,7 @@ jobs:
3754
shell: bash
3855

3956
release_store_stencil:
57+
if: inputs.devRelease == 'yes'
4058
name: Publish Dev Build
4159
needs: [build_stencil_store, get_dev_version]
4260
runs-on: ubuntu-latest
@@ -50,3 +68,19 @@ jobs:
5068
tag: dev
5169
version: ${{ needs.get_dev_version.outputs.dev-version }}
5270
token: ${{ secrets.NPM_TOKEN }}
71+
72+
release_create_stencil_cli:
73+
if: inputs.devRelease == 'no'
74+
name: Publish Stencil Store
75+
needs: [build_stencil_store]
76+
runs-on: ubuntu-latest
77+
permissions:
78+
id-token: write
79+
steps:
80+
- name: Checkout Code
81+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
82+
- uses: ./.github/workflows/actions/publish-npm
83+
with:
84+
tag: latest
85+
version: ${{ inputs.releaseType }}
86+
token: ${{ secrets.NPM_TOKEN }}

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@
4040
"prettier.base": "prettier --cache 'src/**/*.ts'",
4141
"prettier.dry-run": "npm run prettier.base -- --list-different",
4242
"release": "np",
43-
"test": "vitest",
44-
"test.ci": "npm run test && npm run prettier.dry-run",
43+
"test": "run-s test.*",
44+
"test.prettier": "npm run prettier.dry-run",
45+
"test.unit": "vitest",
4546
"version": "npm run build"
4647
},
4748
"files": [

0 commit comments

Comments
 (0)