fix(ci): use org actions #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Stencil Store | |
on: | |
workflow_call: | |
# Make this a reusable workflow, no value needed | |
# https://docs.github.com/en/actions/using-workflows/reusing-workflows | |
jobs: | |
build_stencil_store: | |
name: Build Stencil Store | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
# the pull_request_target event will consider the HEAD of `main` to be the SHA to use. | |
# attempt to use the SHA associated with a pull request and fallback to HEAD of `main` | |
ref: ${{ github.event_name == 'pull_request_target' && format('refs/pull/{0}/merge', github.event.number) || '' }} | |
persist-credentials: false | |
- name: Get Core Dependencies | |
uses: stenciljs/.github/actions/get-core-dependencies | |
- name: Stencil Store Build | |
run: npm run build | |
shell: bash | |
- name: Unit Tests | |
run: npm test | |
shell: bash | |
- name: Upload Build Artifacts | |
uses: stenciljs/.github/actions/upload-archive | |
with: | |
name: stencil-store | |
output: stencil-store-build.zip | |
paths: ./dist/ |