Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
bnussman committed Feb 8, 2025
1 parent e39d338 commit 7bc4f32
Show file tree
Hide file tree
Showing 10 changed files with 6,505 additions and 10,513 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- run: yarn --frozen-lockfile
- run: yarn workspace ${{ matrix.package }} run lint
- run: bun run --filter ${{ matrix.package }} run lint

build-validation:
runs-on: ubuntu-latest
Expand All @@ -40,7 +40,7 @@ jobs:
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- run: yarn --frozen-lockfile
- run: yarn workspace @linode/validation run build
- run: bun run --filter @linode/validation run build
- uses: actions/upload-artifact@v4
with:
name: packages-validation-lib
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
with:
name: packages-validation-lib
path: packages/validation/lib
- run: yarn workspace @linode/api-v4 run test
- run: bun run --filter @linode/api-v4 run test

build-sdk:
runs-on: ubuntu-latest
Expand All @@ -111,7 +111,7 @@ jobs:
name: packages-validation-lib
path: packages/validation/lib
- run: yarn --frozen-lockfile
- run: yarn workspace @linode/api-v4 run build
- run: bun run --filter @linode/api-v4 run build
- uses: actions/upload-artifact@v4
with:
name: packages-api-v4-lib
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
name: packages-api-v4-lib
path: packages/api-v4/lib
- run: yarn --frozen-lockfile
- run: yarn workspace linode-manager run test
- run: bun run --filter linode-manager run test

test-search:
runs-on: ubuntu-latest
Expand All @@ -189,7 +189,7 @@ jobs:
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- run: yarn --frozen-lockfile
- run: yarn workspace @linode/search run test
- run: bun run --filter @linode/search run test

test-ui:
runs-on: ubuntu-latest
Expand All @@ -204,7 +204,7 @@ jobs:
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- run: yarn --frozen-lockfile
- run: yarn workspace @linode/ui run test
- run: bun run --filter @linode/ui run test

typecheck-ui:
runs-on: ubuntu-latest
Expand All @@ -220,7 +220,7 @@ jobs:
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- run: yarn --frozen-lockfile
- run: yarn workspace @linode/ui run typecheck
- run: bun run --filter @linode/ui run typecheck

typecheck-manager:
runs-on: ubuntu-latest
Expand All @@ -244,7 +244,7 @@ jobs:
name: packages-api-v4-lib
path: packages/api-v4/lib
- run: yarn --frozen-lockfile
- run: yarn workspace linode-manager run typecheck
- run: bun run --filter linode-manager run typecheck

build-manager:
runs-on: ubuntu-latest
Expand All @@ -269,7 +269,7 @@ jobs:
name: packages-api-v4-lib
path: packages/api-v4/lib
- run: yarn --frozen-lockfile
- run: yarn workspace linode-manager run build
- run: bun run --filter linode-manager run build
- uses: actions/upload-artifact@v4
with:
name: packages-manager-build
Expand Down Expand Up @@ -330,7 +330,7 @@ jobs:
name: packages-api-v4-lib
path: packages/api-v4/lib
- run: yarn --frozen-lockfile
- run: yarn workspace linode-manager run build-storybook
- run: bun run --filter linode-manager run build-storybook
- uses: actions/upload-artifact@v4
with:
name: storybook-build
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
yarn workspaces run precommit
bun run --filters run precommit
Loading

0 comments on commit 7bc4f32

Please sign in to comment.