Publish v2 #108
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: Zowe CICS Main CI | |
on: | |
push: | |
paths: | |
- .github/** | |
- packages/** | |
pull_request: | |
paths: | |
- packages/** | |
workflow_dispatch: | |
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]') | |
runs-on: ${{ matrix.os }} | |
outputs: | |
npm-resolutions: ${{ steps.npm-update.outputs.result }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
os: [windows-latest, ubuntu-latest, macos-latest] | |
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: Disable Lint Annotations | |
run: | | |
echo "::remove-matcher owner=eslint-compact::" | |
echo "::remove-matcher owner=eslint-stylish::" | |
- name: Install Dependencies | |
run: npm ci | |
- name: Update Dependencies | |
id: npm-update | |
uses: zowe-actions/octorelease/script@v1 | |
with: | |
config-dir: .github | |
script: npmUpdate | |
- name: Build Source | |
id: build | |
run: npm run build | |
- name: Unit Tests | |
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: packages/*/__tests__/__results__/ | |
- name: Upload Results to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
env_vars: OS,NODE | |
# - name: Bundle all packages | |
# if: matrix.os == 'ubuntu-latest' && matrix.node-version == '20.x' | |
# run: npm i -g vsce && npm run package | |
# - name: Archive all packages | |
# if: matrix.os == 'ubuntu-latest' && matrix.node-version == '20.x' | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: zowe-cics-client | |
# path: dist/* | |
release: | |
if: github.event_name == 'push' && github.ref_protected | |
needs: test | |
runs-on: ubuntu-latest | |
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: Install Dependencies | |
run: npm ci | |
- name: Update Dependencies | |
uses: zowe-actions/octorelease/script@v1 | |
env: | |
GIT_COMMITTER_NAME: zowe_robot | |
GIT_COMMITTER_EMAIL: [email protected] | |
NPM_RESOLUTIONS: ${{ needs.test.outputs.npm-resolutions }} | |
with: | |
config-dir: .github | |
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 }} | |
NPM_TOKEN: ${{ secrets.VSCODE_NPM_PUBLISHER_TOKEN }} | |
OVSX_PAT: ${{ secrets.VSCODE_OVSX_PUBLISHER_TOKEN }} | |
VSCE_PAT: ${{ secrets.VSCODE_VSCE_PUBLISHER_TOKEN }} | |
with: | |
config-dir: .github |