Fix Vara UI publish #384
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: 'CI-CD @gear-js/ui' | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
- utils/gear-ui/** | |
- utils/vara-ui/** | |
push: | |
branches: [main] | |
paths: | |
- utils/gear-ui/** | |
- utils/vara-ui/** | |
jobs: | |
gear-ui-test: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel previous workflow runs | |
uses: styfle/cancel-workflow-action@0.4.0 | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v2 | |
- name: Install NodeJS 18.x | |
uses: actions/setup-node@v2.1.5 | |
with: | |
node-version: 18.x | |
- name: "gear-ui: Install dependencies" | |
working-directory: utils/gear-ui | |
run: npm install | |
- name: "gear-ui: Build pkg" | |
working-directory: utils/gear-ui | |
run: npm run build | |
- name: "gear-ui: Run tests" | |
working-directory: utils/gear-ui | |
run: npm run test | |
vara-ui-build: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel previous workflow runs | |
uses: styfle/cancel-workflow-action@0.4.0 | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v2 | |
- name: Install NodeJS 18.x | |
uses: actions/setup-node@v2.1.5 | |
with: | |
node-version: 18.x | |
- name: "vara-ui: Install dependencies" | |
working-directory: utils/vara-ui | |
run: npm install | |
- name: "vara-ui: Build pkg" | |
working-directory: utils/vara-ui | |
run: npm run build | |
publish-to-npm: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v2 | |
- name: "Check changed files" | |
shell: pwsh | |
id: check_file_changed | |
run: | | |
# Diff HEAD with the previous commit | |
$diff = git diff --name-only HEAD^ HEAD | |
# Check if a file under gear-ui has changed (added, modified, deleted) | |
$SourceDiffGearUI = $diff | Where-Object { $_ -match '^utils/gear-ui/' } | |
$HasDiffGearUI = $SourceDiffGearUI.Length -gt 0 | |
$SourceDiffVaraUI = $diff | Where-Object { $_ -match '^utils/vara-ui/' } | |
$HasDiffVaraUI = $SourceDiffVaraUI.Length -gt 0 | |
# Set the output | |
Write-Host "::set-output name=gearui_changed::$HasDiffGearUI" | |
Write-Host "::set-output name=varaui_changed::$HasDiffVaraUI" | |
- name: Use node 18.x | |
uses: actions/setup-node@v2.1.5 | |
with: | |
node-version: 18.x | |
- name: "@gear-js/ui: Check pkg version" | |
uses: EndBug/version-check@v1 | |
id: check_gear | |
with: | |
file-name: utils/gear-ui/package.json | |
file-url: https://unpkg.com/@gear-js/ui@latest/package.json | |
static-checking: localIsNew | |
- name: "@gear-js/vara-ui: Check pkg version" | |
uses: EndBug/version-check@v1 | |
id: check_vara | |
with: | |
file-name: utils/vara-ui/package.json | |
file-url: https://unpkg.com/@gear-js/vara-ui@latest/package.json | |
static-checking: localIsNew | |
- name: "@gear-js/ui: Publish" | |
if: steps.check_gear.outputs.changed == 'true' | |
working-directory: utils/gear-ui | |
run: | | |
export token=$(printenv $(printenv GITHUB_ACTOR)) | |
npm install | |
npm run build | |
npm config set //registry.npmjs.org/:_authToken=$token | |
npm publish | |
env: | |
osipov-mit: ${{ secrets.OSIPOV_NPM_TOKEN }} | |
nikitayutanov: ${{ secrets.YUTANOV_NPM_TOKEN }} | |
- name: "@gear-js/vara-ui: Publish" | |
if: steps.check_vara.outputs.changed == 'true' | |
working-directory: utils/vara-ui | |
run: | | |
export token=$(printenv $(printenv GITHUB_ACTOR)) | |
npm install | |
npm run build | |
npm config set //registry.npmjs.org/:_authToken=$token | |
npm publish | |
env: | |
osipov-mit: ${{ secrets.OSIPOV_NPM_TOKEN }} | |
nikitayutanov: ${{ secrets.YUTANOV_NPM_TOKEN }} |