feat: add cancel drag method (#56) #13
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-latest | |
environment: upload | |
permissions: | |
id-token: write # Required by Akeyless | |
contents: read | |
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: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '14' | |
- name: Install modules | |
run: npm install --no-audit --ignore-scripts | |
- name: Build package | |
run: npm run build-package | |
- name: Run unit tests | |
run: CHROME_BIN=`which chrome || which chromium-browser` ENV_BROWSER=Chrome_headless npm run test | |
- name: Publish release | |
run: npx ci-semantic-release | |
env: | |
NPM_TOKEN: ${{ steps.import-secrets.outputs.NPM_TOKEN }} | |
GH_TOKEN: ${{ steps.import-secrets.outputs.GH_TOKEN }} |