Skip to content

Merge pull request #218 from coniva-bouldering/fix-cd-notify #283

Merge pull request #218 from coniva-bouldering/fix-cd-notify

Merge pull request #218 from coniva-bouldering/fix-cd-notify #283

Workflow file for this run

# typescriptのlintをPR時に実行する
name: notifier-CI
on:
push:
branches:
- main
paths:
- "notifier/**"
pull_request:
paths:
- "notifier/**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setupEnvironment
with:
cache-key: "notifier"
working-directory: ./notifier
- name: Lint
run: npm run lint
working-directory: ./notifier