-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
65 additions
and
1,455 deletions.
There are no files selected for viewing
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,35 @@ | ||
name: Checks | ||
on: [push] | ||
|
||
jobs: | ||
deploy-test: | ||
name: Verify the site can be deployed | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 21 | ||
|
||
- name: Install npm dependencies | ||
run: npm ci | ||
|
||
- name: Install openscad | ||
run: sudo apt-get install -y openscad | ||
|
||
- name: Build keycaps | ||
run: | | ||
mkdir target | ||
export OPENSCAD=$(which openscad) | ||
make keycaps-simple | ||
make keycaps | ||
- name: Build Parts | ||
run: make parts | ||
|
||
- name: Compile Code | ||
run: make | ||
|
||
- name: Build site | ||
run: npm run build |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"recommendations": ["dprint.dprint"] | ||
"recommendations": ["dprint.dprint", "antfu.unocss"] | ||
} |
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
Oops, something went wrong.