[ASC-169] fix checkbox group all selection #2530
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: Linting | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{matrix.node}} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{matrix.node}} | |
- run: npm -v | |
- run: npm ci --update-notifier=false | |
- name: Run commitlint on last commit | |
if: github.ref != 'refs/heads/master' | |
run: | | |
git log --pretty=format:'%s' -1 --skip=1 | npx commitlint | |
- name: Check for package-lock issues | |
run: "! grep -E '(http:|nexus.corp.adslot.com/repository/adslot-npm)' package-lock.json" | |
- run: npm run lint | |
- name: Notify Slack channel | |
if: always() && job.status != 'success' && github.ref == 'refs/heads/master' | |
env: | |
GITHUB_WORKFLOW: ${{env.GITHUB_WORKFLOW}} | |
GITHUB_RUN_NUMBER: ${{env.GITHUB_RUN_NUMBER}} | |
GITHUB_SHA: ${{env.GITHUB_SHA}} | |
GITHUB_REPOSITORY: ${{env.GITHUB_REPOSITORY}} | |
GITHUB_REF: ${{env.GITHUB_REF}} | |
run: | | |
GIT_SHA_SHORT=$(git rev-parse --short ${GITHUB_SHA}) | |
NOTIFICATION_TEXT="${GITHUB_WORKFLOW} [${{matrix.node}}] #${GITHUB_RUN_NUMBER} (${GIT_SHA_SHORT}) of ${GITHUB_REPOSITORY}@${GITHUB_REF}" | |
SUCCESS_NOTIFICATION="${NOTIFICATION_TEXT} successful" | |
SUCCESS_COLOR="good" | |
FAILURE_NOTIFICATION="${NOTIFICATION_TEXT} failed" | |
FAILURE_COLOR="danger" | |
CANCELLED_NOTIFICATION="${NOTIFICATION_TEXT} cancelled" | |
CANCELLED_COLOR="warning" | |
if [[ ${{job.status}} == "success" ]]; then | |
TEXT=$SUCCESS_NOTIFICATION | |
COLOR=$SUCCESS_COLOR | |
elif [[ ${{job.status}} == "failure" ]]; then | |
TEXT=$FAILURE_NOTIFICATION | |
COLOR=$FAILURE_COLOR | |
elif [[ ${{job.status}} == "cancelled" ]]; then | |
TEXT=$CANCELLED_NOTIFICATION | |
COLOR=$CANCELLED_COLOR | |
fi | |
curl -X POST \ | |
-H "Content-Type: application/json" \ | |
--url ${{secrets.SLACK_WEBHOOK}} \ | |
-d @- << EOF | |
{ | |
"attachments": [ | |
{ | |
"color": "${COLOR}", | |
"text": "${TEXT}" | |
} | |
] | |
} | |
EOF |