feat(listbox): add noDataText messages #130
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
# Builds package and publishes it on npm. | |
# Triggered on pushes to develop, master and release branches | |
name: CD | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- release-* | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
environment: upload | |
permissions: | |
id-token: write # Required by Akeyless | |
contents: write | |
packages: read | |
steps: | |
- name: Import Secrets | |
id: import-secrets | |
uses: LanceMcCarthy/akeyless-action@v3 | |
with: | |
access-id: ${{ secrets.GH_AKEYLESS_ACCESS_ID }} | |
static-secrets: | | |
{ | |
"/WebComponents/prod/tokens/GH_TOKEN": "GH_TOKEN", | |
"/WebComponents/prod/tokens/PROGRESS_NPM_REGISTRY_TOKEN": "NPM_TOKEN" | |
} | |
export-secrets-to-environment: false | |
- name: Check out branch | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Fetch all branches | |
- name: Install modules | |
run: npm ci --ignore-scripts | |
- name: Lint | |
run: npm run lint | |
- name: Publish release | |
run: npx semantic-release | |
env: | |
NPM_TOKEN: ${{ steps.import-secrets.outputs.NPM_TOKEN }} | |
GH_TOKEN: ${{ steps.import-secrets.outputs.GH_TOKEN }} |