npm(deps-dev): bump eslint-plugin-github from 4.10.1 to 5.1.1 #799
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
on: | |
push: | |
branches: | |
- main | |
- development/* | |
pull_request: | |
branches: | |
- development/* | |
- main | |
workflow_dispatch: | |
inputs: | |
environment: | |
type: environment | |
default: production | |
name: test-index | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
environment: ${{ inputs.environment || 'production' }} | |
outputs: | |
name: ${{ steps.artifacts.outputs.name }} | |
branch: ${{ steps.index.outputs.branch }} | |
shortcommit: ${{ steps.index.outputs.shortcommit }} | |
sha: ${{ steps.index.outputs.sha }} | |
actor: ${{ steps.index.outputs.actor }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup final status file | |
run: echo -n SUCCESSFUL > .final_status | |
- name: Push final status | |
id: artifacts | |
uses: ./ | |
with: | |
url: ${{ vars.ARTIFACTS_URL }} | |
user: ${{ secrets.ARTIFACTS_USER }} | |
password: ${{ secrets.ARTIFACTS_PASSWORD }} | |
source: ./.final_status | |
method: upload | |
- name: Setup version | |
uses: ./ | |
with: | |
method: index | |
url: ${{ vars.ARTIFACTS_URL }} | |
user: ${{ secrets.ARTIFACTS_USER }} | |
password: ${{ secrets.ARTIFACTS_PASSWORD }} | |
args: | | |
version=1.0.0-${{ github.run_number }} | |
- name: Setup index outputs | |
id: index | |
run: | | |
echo "branch=${GITHUB_REF/refs\/heads\//}" >> $GITHUB_OUTPUT | |
if [[ ${{ github.event_name }} == "pull_request" ]]; then | |
SHA=${{ github.event.pull_request.head.sha }} | |
echo "sha=$SHA" >> $GITHUB_OUTPUT | |
echo "shortcommit=${SHA::10}" >> $GITHUB_OUTPUT | |
else | |
echo "sha=${{ github.sha }}" >> $GITHUB_OUTPUT | |
echo "shortcommit=${GITHUB_SHA::10}" >> $GITHUB_OUTPUT | |
fi | |
# remove [bot] from actor name | |
echo "actor=${GITHUB_ACTOR/\[bot\]/}" >> $GITHUB_OUTPUT | |
test: | |
runs-on: ubuntu-latest | |
environment: ${{ inputs.environment || 'production' }} | |
needs: setup | |
env: | |
EXPECTED: ${{ needs.setup.outputs.name }} | |
strategy: | |
matrix: | |
test: | |
- key: sha | |
value: ${{ needs.setup.outputs.sha }} | |
- key: commit | |
value: ${{ needs.setup.outputs.sha}} | |
- key: version | |
value: '1.0.0-${{ github.run_number }}' | |
- key: branch | |
value: ${{ needs.setup.outputs.branch }} | |
- key: ref | |
value: ${{ github.ref }} | |
- key: actor | |
value: ${{ needs.setup.outputs.actor }} | |
- key: run_number | |
value: ${{ github.run_number }} | |
- key: shortcommit | |
value: ${{ needs.setup.outputs.shortcommit }} | |
steps: | |
- name: Check list with ${{ matrix.test.key }} | |
run: | | |
RESULT=$(curl -u ${{ secrets.ARTIFACTS_USER }}:${{ secrets.ARTIFACTS_PASSWORD }} \ | |
"${{ vars.ARTIFACTS_URL }}/search/last_success/${{ matrix.test.key }}/github/${{ github.repository }}/${{ github.workflow }}/${{ matrix.test.value }}") | |
echo $RESULT | |
if [ "$RESULT" != "$EXPECTED" ]; then | |
echo "result: $RESULT != $EXPECTED" | |
exit 1 | |
else | |
echo SUCCESS! | |
fi | |
shell: bash |