Skip to content

Commit

Permalink
feat: use bun in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jpudysz committed Dec 17, 2023
1 parent 959682c commit 17589f5
Show file tree
Hide file tree
Showing 8 changed files with 1,040 additions and 8,224 deletions.
27 changes: 0 additions & 27 deletions .github/actions/setup/action.yml

This file was deleted.

11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,18 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
uses: oven-sh/setup-bun@v1
with:
fetch-depth: 0

- name: Setup
uses: ./.github/actions/setup
- name: Install
uses: bun install

- name: Lint files
run: yarn lint
run: bun run lint

- name: Type check files
run: yarn tsc
run: bun run tsc

- name: Run tests
run: yarn test
run: bun run test
7 changes: 7 additions & 0 deletions docs/.astro/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,13 @@ declare module 'astro:content' {
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".mdx"] };
"v1/docs/start/setup.mdx": {
id: "v1/docs/start/setup.mdx";
slug: "v1/docs/start/setup";
body: string;
collection: "docs";
data: InferEntrySchema<"docs">
} & { render(): Render[".mdx"] };
};

};
Expand Down
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"@astrojs/sitemap": "3.0.3",
"@astrojs/starlight": "0.15.0",
"@fontsource-variable/nunito": "5.0.17",
"astro": "4.0.2",
"astro-expressive-code": "^0.29.3",
"astro": "4.0.6",
"astro-expressive-code": "0.30.1",
"astro-seo": "0.8.0",
"autoprefixer": "10.4.16",
"motion": "10.16.4",
Expand Down
Loading

0 comments on commit 17589f5

Please sign in to comment.