Skip to content

Merge pull request #15 from h-yoshikawa44/feature/14-open_weather_map… #29

Merge pull request #15 from h-yoshikawa44/feature/14-open_weather_map…

Merge pull request #15 from h-yoshikawa44/feature/14-open_weather_map… #29

Workflow file for this run

name: Develop Check
on: push
jobs:
front-end-check:
name: Front End Check
runs-on: ubuntu-22.04
timeout-minutes: 5
steps:

Check failure on line 10 in .github/workflows/develop.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/develop.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.node-version'
cache: npm
cache-dependency-path: './package-lock.json'
- name: Clean Install Dependencies
run: npm ci
- name: ESlint & StyleLint & Prettier
run: npm run lint-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 }}