post fix: devchallenges記事のリンクをlegacyサブドメインベースに修正(#113) #170
Workflow file for this run
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: Develop Check | |
on: | |
push: | |
jobs: | |
check: | |
name: Lint | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.15.0 | |
cache: npm | |
- name: Package Install | |
run: npm install | |
- name: Lint & Format Check | |
run: npm run lint-check | |
- name: Slack Notification by NonSuccess | |
uses: 8398a7/action-slack@v3 | |
if: success() != true | |
with: | |
status: ${{ job.status }} | |
fields: repo,message,commit,author,action,eventName,ref,workflow | |
author_name: "check" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |