Bump @types/node from 18.19.57 to 18.19.59 (#283) #245
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: 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 }} |