Merge pull request #338 from mkobayashime/renovate/dependencies-(patch) #1362
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
on: push | |
name: CI | |
env: | |
TZ: Asia/Tokyo | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- run: make node_modules | |
- run: make lint | |
- run: make typecheck | |
run: | |
name: Run | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
env: | |
HEADLESS: true | |
FORCE_FULL_FETCH: true | |
FEED_ITEMS_NUMBER: 2 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- run: make node_modules | |
- run: make run |