Skip to content

Commit 70dd4a0

Browse files
committed
Clean up action
1 parent 2dc7a48 commit 70dd4a0

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

.github/workflows/deploy.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ jobs:
1414
name: Build Docs
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- name: Checkout
18+
uses: actions/checkout@v4
1819
with:
1920
fetch-depth: 0
20-
- uses: actions/setup-node@v4
21+
- name: Setup Node
22+
uses: actions/setup-node@v4
2123
with:
2224
node-version: 20
2325
cache: npm
@@ -27,7 +29,7 @@ jobs:
2729
- name: Build website
2830
run: npm run build
2931

30-
- name: Upload Build Artifact
32+
- name: Upload build artifact
3133
uses: actions/upload-pages-artifact@v3
3234
with:
3335
path: build

package-lock.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
"dependencies": {
1717
"@docusaurus/core": "3.5.1",
1818
"@docusaurus/preset-classic": "3.5.1",
19-
"@mdx-js/react": "^3.0.0",
20-
"clsx": "^2.0.0",
21-
"prism-react-renderer": "^2.3.0",
22-
"react": "^18.0.0",
23-
"react-dom": "^18.0.0"
19+
"@mdx-js/react": "^3.0.1",
20+
"clsx": "^2.1.1",
21+
"prism-react-renderer": "^2.3.1",
22+
"react": "^18.3.1",
23+
"react-dom": "^18.3.1"
2424
},
2525
"devDependencies": {
2626
"@docusaurus/module-type-aliases": "3.5.1",

0 commit comments

Comments
 (0)