Skip to content

SWI-5012 - Upgrading action to run on NodeJS 20 #66

SWI-5012 - Upgrading action to run on NodeJS 20

SWI-5012 - Upgrading action to run on NodeJS 20 #66

Workflow file for this run

on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
test-success:
runs-on: ubuntu-latest
name: Test the action on success
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Success
run: exit 0
- name: Action
uses: ./
if: always()
with:
job-status: ${{ job.status }}
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}
slack-channel: ${{ secrets.SLACK_CHANNEL }}
test-failure:
runs-on: ubuntu-latest
name: Test the action on failure
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Failure
run: exit 1
- name: Action
uses: ./
if: always()
with:
job-status: ${{ job.status }}
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}
slack-channel: ${{ secrets.SLACK_CHANNEL }}