Skip to content

- ci - Add shell-functions shGitPullrequestCleanup(), shGitPullrequest() to automatically cleanup or create-and-push github-pull-commit to origin/alpha. #140

- ci - Add shell-functions shGitPullrequestCleanup(), shGitPullrequest() to automatically cleanup or create-and-push github-pull-commit to origin/alpha.

- ci - Add shell-functions shGitPullrequestCleanup(), shGitPullrequest() to automatically cleanup or create-and-push github-pull-commit to origin/alpha. #140

Workflow file for this run

# this workflow will run nodejs coverages and tests
name: on-pull-request
on:
- pull_request
- workflow_dispatch
jobs:
job1:
strategy:
matrix:
architecture:
# - arm64
- x64
# - x86
node_version:
- 18
- 20
# - 22
os:
- macos-latest
- ubuntu-latest
- windows-latest
# base - .github/workflows/ci.yml - beg
env:
CI_MATRIX_NAME: >
node
v${{ matrix.node_version }}
${{ matrix.architecture }}
${{ matrix.os }}
CI_MATRIX_NAME_MAIN: "node v20 x64 ubuntu-latest"
CI_MATRIX_NODE_VERSION: v${{ matrix.node_version }}
CI_MATRIX_NODE_VERSION_MAIN: v20
CI_WORKFLOW_NAME: >
${{ github.workflow }}
- ${{ github.event_name }}
- ${{ github.event.inputs.workflow_dispatch_name }}
- ${{ github.ref_name }}
name: >
node
v${{ matrix.node_version }}
${{ matrix.architecture }}
${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- run: echo "$(date -u +"%Y-%m-%d %TZ") - ${{ env.CI_WORKFLOW_NAME }}" # "
# disable autocrlf in windows
- run: git config --global core.autocrlf false
# https://github.com/actions/checkout
- uses: actions/checkout@v3
# fetch jslint_ci.sh from trusted source
- run: |
git fetch origin alpha --depth=1
sh -c 'for FILE in .ci.sh .ci2.sh jslint_ci.sh myci2.sh; do
if [ -f "$FILE" ]; then git checkout origin/alpha "$FILE"; fi; done'
# https://github.com/actions/setup-node
- uses: actions/setup-node@v3
with:
architecture: ${{ matrix.architecture }}
node-version: ${{ matrix.node_version }}
# run nodejs coverages and tests
- run: sh jslint_ci.sh shCiBase
# base - .github/workflows/ci.yml - end