fix(deps): update dependency chokidar to v4 #1303
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 | |
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: bunx depcheck --ignore-bin-package | |
- uses: wagoid/commitlint-github-action@v6 | |
- run: make build | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- run: make node_modules | |
- name: Simple test | |
run: make test | |
- name: Build for E2E | |
run: make build | |
- run: bun link | |
- uses: actions/checkout@v4 | |
with: | |
repository: mkobayashime/bookmarklets | |
path: repo-bookmarklets | |
- name: E2E | |
working-directory: ./repo-bookmarklets | |
run: | | |
bun link bookmarklets-cli | |
make build | |
git add -N . | |
git diff --exit-code --stat |