目標完了時にCloud Tasksの通知が削除されない問題を修正 #266
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: Lint Check for Functions | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- "functions/**" | |
jobs: | |
lint-check-functions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18.x" | |
- name: Install dependencies | |
run: npm install | |
working-directory: functions | |
- name: Run Lint | |
run: npm run lint | |
working-directory: functions |