-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GitOrigin-RevId: d3b351929731251abfc4e72c2c40c2b8ec44bec4
- Loading branch information
1 parent
46e9683
commit f388959
Showing
4 changed files
with
57 additions
and
14 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
.github/workflows/packages.react-router-busy.integrate.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Integrate | ||
|
||
on: | ||
pull_request: | ||
|
||
# Don't run integrate checks multiple times at once, only most recent matters since validating all code | ||
concurrency: ${{ github.workflow }}-${{ github.ref }} | ||
|
||
jobs: | ||
quality: | ||
if: github.repository == 'bitofbreeze/react-router-busy' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
- name: Set up Biome | ||
uses: biomejs/setup-biome@v2 | ||
with: | ||
version: latest | ||
- name: Run Biome | ||
run: biome ci . | ||
validate: | ||
needs: [quality] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Bun | ||
uses: oven-sh/[email protected] | ||
with: | ||
bun-version: latest | ||
- name: Install dependencies (`npm ci`) | ||
run: bun install --frozen-lockfile | ||
- name: Test | ||
run: bun test --filter react-router-busy --coverage | ||
# Build checks types so no need for separate typecheck step | ||
- name: Build | ||
run: bun --filter react-router-busy build | ||
- name: Check exports | ||
run: bun --filter react-router-busy check-exports |
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
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
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