Skip to content

chore(ci-deps): update reside-eng/workflow-status-notification-action action to v1.4.0 #2301

chore(ci-deps): update reside-eng/workflow-status-notification-action action to v1.4.0

chore(ci-deps): update reside-eng/workflow-status-notification-action action to v1.4.0 #2301

Workflow file for this run

name: Verify
on: [pull_request]
env:
NODE_VERSION: 20.x
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Verify formatting
run: yarn format:check
- name: Lint
run: yarn lint
- name: Test
run: yarn test --coverage --silent
- name: Build
run: yarn build
notification:
if: always()
name: notification
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: technote-space/workflow-conclusion-action@v3.0.3
- uses: reside-eng/workflow-status-notification-action@v1.4.0
with:
current-status: ${{ env.WORKFLOW_CONCLUSION }}
slack-webhook: ${{ secrets.SLACK_WEBHOOK_PLATFORM_PROD }}
github-token: ${{ secrets.GITHUB_TOKEN }}