-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from MinoruSekine/fix/41/slow_make_lint_site
fix: Slow make lint and make site. (#41)
- Loading branch information
Showing
5 changed files
with
49 additions
and
33 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 |
---|---|---|
|
@@ -11,17 +11,25 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build site | ||
run: | | ||
make site | ||
- name: Set up node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Upload artifact | ||
uses: actions/[email protected] | ||
with: | ||
path: ./out/site | ||
- name: Install jsdoc | ||
run: npm install | ||
|
||
- name: Build site | ||
run: | | ||
make site | ||
- name: Upload artifact | ||
uses: actions/[email protected] | ||
with: | ||
path: ./out/site | ||
|
||
deploy: | ||
needs: upload_artifact | ||
|
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 |
---|---|---|
|
@@ -8,10 +8,10 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out | ||
uses: actions/checkout@v4 | ||
- name: Check out | ||
uses: actions/checkout@v4 | ||
|
||
- name: Validate HTML5 | ||
uses: Cyb3r-Jak3/[email protected] | ||
with: | ||
root: ./ | ||
- name: Validate HTML5 | ||
uses: Cyb3r-Jak3/[email protected] | ||
with: | ||
root: ./ |
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
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
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