Update workflows and deps for technical currency #422
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: zowe-cli-plugin | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
macos-type: | |
type: choice | |
description: Run against x86-based MacOS (12), otherwise run against ARM64-based MacOS (14) | |
default: macos-14 | |
options: | |
- macos-12 | |
- macos-14 | |
jobs: | |
test: | |
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository) && !contains(github.event.head_commit.message, '[ci skip]') | |
outputs: | |
npm-resolutions: ${{ steps.npm-update.outputs.result }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [18.x, 20.x, 22.x] | |
os: | |
- windows-latest | |
- ubuntu-latest | |
- ${{ github.event.inputs.macos-type || 'macos-14'}} | |
env: | |
OS: ${{ matrix.os }} | |
NODE: ${{ matrix.node-version }} | |
NODE_OPTIONS: --max_old_space_size=4096 | |
timeout-minutes: 60 | |
concurrency: | |
group: ${{ matrix.os }}-node-${{ matrix.node-version }}-ci-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Downgrade Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11.5' | |
- name: Install Node Package Dependencies | |
run: npm ci --quiet | |
- name: Update Dependencies | |
id: npm-update | |
uses: zowe-actions/octorelease/script@v1 | |
with: | |
script: npmUpdate | |
- name: Windows only - Add clidriver to PATH | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: echo "$((Get-Item .).FullName)/node_modules/ibm_db/installer/clidriver/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
- name: Build Source | |
id: build | |
run: npm run build --if-present | |
- name: Unit Tests | |
id: unit | |
if: ${{ always() && steps.build.outcome == 'success' }} | |
run: npm run test:unit | |
- name: Archive Results | |
if: ${{ always() && steps.build.outcome == 'success' }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.os }}-${{ matrix.node-version }}-results | |
path: | | |
__tests__/__results__/ | |
- name: Upload Results to Codecov | |
if: ${{ always() && steps.build.outcome == 'success' }} | |
uses: codecov/codecov-action@v4 | |
with: | |
env_vars: OS,NODE | |
token: ${{ secrets.CODECOV_TOKEN }} | |
release: | |
if: github.event_name == 'push' && github.ref_protected | |
needs: test | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
ref: ${{ github.ref }} | |
- name: Use Node.js LTS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- name: Downgrade Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11.5' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Update Dependencies | |
uses: zowe-actions/octorelease/script@v1 | |
env: | |
GIT_COMMITTER_NAME: ${{ secrets.ZOWE_ROBOT_USER }} | |
GIT_COMMITTER_EMAIL: ${{ secrets.ZOWE_ROBOT_EMAIL }} | |
NPM_RESOLUTIONS: ${{ needs.test.outputs.npm-resolutions }} | |
with: | |
script: npmUpdate | |
- name: Build Source | |
run: npm run build | |
- uses: zowe-actions/octorelease@v1 | |
env: | |
GIT_COMMITTER_NAME: ${{ secrets.ZOWE_ROBOT_USER }} | |
GIT_COMMITTER_EMAIL: ${{ secrets.ZOWE_ROBOT_EMAIL }} | |
GIT_CREDENTIALS: x-access-token:${{ secrets.ZOWE_ROBOT_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
NPM_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
NPM_EMAIL: ${{ secrets.ZOWE_ROBOT_EMAIL }} |