Skip to content

Commit

Permalink
Add github token for check runs
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Jan 17, 2025
1 parent d1664e4 commit 10579f1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,21 +42,33 @@ jobs:

- name: Unit tests (common)
run: npx zenfs-test -pfw --common --ci "Unit tests (common)"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Unit tests (InMemory)
run: npx zenfs-test -pfw tests/setup/memory.ts --ci "Unit tests (InMemory)"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Unit tests (contexts)
run: npx zenfs-test -pfw tests/setup/context.ts --ci "Unit tests (contexts)"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Unit tests (Index)
run: npx zenfs-test -pfw tests/setup/index.ts --ci "Unit tests (Index)"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Unit tests (Port)
run: npx zenfs-test -pfw tests/setup/port.ts --ci "Unit tests (Port)"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Unit tests (Overlay+Fetch)
run: tests/fetch/run.sh -w --ci "Unit tests (Overlay+Fetch)"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Report coverage
run: npx zenfs-test --report

0 comments on commit 10579f1

Please sign in to comment.