-
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.
- Loading branch information
Showing
27 changed files
with
163 additions
and
1,697 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,51 @@ | ||
name: continuous-integration | ||
on: push | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Fetch sources | ||
uses: actions/checkout@v4 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
cache: npm | ||
node-version: 21 | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Run tests | ||
run: npm test | ||
run: | ||
needs: test | ||
runs-on: ${{matrix.platform}} | ||
strategy: | ||
matrix: | ||
platform: [macos-latest, ubuntu-latest, windows-latest] | ||
steps: | ||
- uses: cedx/setup-hashlink@main | ||
- run: hl --version | ||
deploy: | ||
needs: run | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Fetch sources | ||
uses: actions/checkout@v4 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
cache: npm | ||
node-version: 21 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
cache: pip | ||
python-version: 3.12 | ||
- name: Install dependencies | ||
run: | | ||
npm ci | ||
pip install --requirement=etc/requirements.txt | ||
- name: Deploy documentation | ||
run: | | ||
npx gulp doc | ||
mkdocs gh-deploy --config-file=etc/mkdocs.yaml --force |
This file was deleted.
Oops, something went wrong.
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,8 +1,10 @@ | ||
/**/.DS_Store | ||
/.idea/ | ||
/bin/*.map | ||
/docs/api/ | ||
/etc/http-client.private.env.json | ||
/lib/ | ||
/node_modules/ | ||
/npm-debug.log | ||
/var/ | ||
/www/ |
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.