Skip to content

Commit

Permalink
other fixes to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
wildwestrom committed Jul 22, 2024
1 parent 0f17eba commit cec6e0a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
- name: Install Dependencies
run: bun i

- name: Check style
run: bun lint

- name: Check for errors
run: bun check

Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,11 @@ jobs:
- name: Install bun
uses: oven-sh/setup-bun@v2

- name: Install dependencies
run: bun i

- name: Check types
run: bun check

- name: Check style
run: bun run lint
run: bun lint
Binary file modified bun.lockb
Binary file not shown.
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"devDependencies": {
"@sveltejs/adapter-static": "^1.0.0",
"@sveltejs/kit": "^1.0.1",
"@types/highlight.js": "^10.1.0",
"@types/highlightjs": "^9.12.6",
"@types/html-minifier": "^4.0.2",
"@types/showdown": "^2.0.6",
"autoprefixer": "^10.4.13",
Expand All @@ -30,8 +30,14 @@
"postcss-scss": "^4.0.6",
"prettier": "^2.8.1",
"prettier-plugin-svelte": "^2.9.0",
"rehype-highlight": "^7.0.0",
"rehype-raw": "^7.0.0",
"rehype-shift-heading": "^2.0.0",
"rehype-stringify": "^10.0.0",
"remark-frontmatter": "^5.0.0",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"sass": "^1.57.1",
"showdown": "^2.1.0",
"svelte": "^3.55.0",
Expand All @@ -46,4 +52,4 @@
"highlight.js": "^11.7.0",
"modern-normalize": "^1.1.0"
}
}
}

0 comments on commit cec6e0a

Please sign in to comment.