sdk and web tests commands updated #12
Workflow file for this run
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: Publishing uiComponents | |
# on: | |
# release: | |
# types: | |
# - published | |
# jobs: | |
# publish: | |
# name: docker | |
# runs-on: [ self-hosted, Linux, medium, ephemeral ] | |
# permissions: | |
# contents: read | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 | |
# - name: Setup NodeJS Environment | |
# uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d | |
# with: | |
# node-version: 18.x | |
# - name: Install Yarn | |
# run: npm install -g yarn | |
# - name: Create file .npmrc | |
# run: | | |
# touch .npmrc | |
# echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc | |
# cp .npmrc ./uiComponents/.npmrc | |
# - name: Install uiComponents dependencies | |
# run: npm run install:uiComponents | |
# - name: Build uiComponents | |
# run: npm run build:uiComponents | |
# - name: Publish uiComponents package | |
# run: npm run publish:uiComponents --access=public | |
# env: | |
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |