Added FileListEvent enum #48
This file contains hidden or 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: Bun CI | |
| on: | |
| push: | |
| paths-ignore: | |
| - "*.md" | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: "1.0.1" | |
| - name: Cache Dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.bun/install/cache | |
| ~/work/farjs-filelist/farjs-filelist/bun.lockb | |
| key: ${{ runner.os }}-bun-cache-v4-${{ hashFiles('package.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-bun-cache-v4- | |
| - name: Run tests | |
| run: | | |
| bun install | |
| bun test |