Skip to content

Bump @types/node from 18.19.59 to 18.19.64 (#284) #246

Bump @types/node from 18.19.59 to 18.19.64 (#284)

Bump @types/node from 18.19.59 to 18.19.64 (#284) #246

Workflow file for this run

---
name: Build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18.14.0
- name: Install Node.js dependencies
run: yarn
- name: Slack Notification
uses: rtCamp/action-slack-notify@v2
env:
SLACK_CHANNEL: feed-github
SLACK_COLOR: ${{ job.status }}
SLACK_ICON: https://avatars.githubusercontent.com/u/82425418?s=200&v=4
SLACK_TITLE: 'env-secrets to dev :rocket:'
SLACK_USERNAME: env-secrets-bot
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
- name: Notify failures
if: failure()
uses: rtCamp/action-slack-notify@v2
env:
SLACK_LINK_NAMES: true
SLACK_MESSAGE:
# prettier-ignore
"hey @${{ github.actor }}, @mark, sorry to let you know you broke the build"
SLACK_CHANNEL: feed-github
SLACK_COLOR: ${{ job.status }}
SLACK_ICON: https://avatars.githubusercontent.com/u/82425418?s=200&v=4
SLACK_TITLE: 'Failed: env-secrets to dev :fire:'
SLACK_USERNAME: env-secrets-bot
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}