-
Notifications
You must be signed in to change notification settings - Fork 463
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- this ci-release does not change any core-functionality of file jslint.js - doc - add file CHANGELOG.md - ci - begin addng regression tests and improve code-coverage. - ci - allow pull-requests to run restricted-ci (cannot upload artifacts). - gh-pages - fix missing assets and insecure http-links. - gh-pages - merge file jslint.css into index.html. - gh-pages - add files image-jslint-xxx.png. - gh-pages - cleanup asset naming-convention. - fix missing fonts in function.html and help.html. - add files .gitconfig, Daley-Bold.woff2, Programma-Bold.woff2, icon-folder-open-solid.svg, icon-window-maximize-regular.svg. - ci - fix http-links after moving to jslint-org. - doc - migrate file README to README.md with embedded ci links and screenshots. - ci - add macos and windows to ci-matrix. - ci - ci now fails if jslint-check fails for any of the files in branches. - ci - add github-workflows to generate code-coverage for jslint.js.
- Loading branch information
Showing
22 changed files
with
1,075 additions
and
557 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
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,36 @@ | ||
# this workflow will run nodejs coverages and tests | ||
name: on_pull_request | ||
on: | ||
- pull_request | ||
# shCiBase - start | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
architecture: | ||
# - arm64 | ||
- x64 | ||
# - x86 | ||
node_version: | ||
- 12 | ||
- 14 | ||
- 16 | ||
os: | ||
- macos-latest | ||
- ubuntu-latest | ||
- windows-latest | ||
name: node . v${{ matrix.node_version }} . ${{ matrix.architecture }} . ${{ matrix.os }} | ||
steps: | ||
# https://github.com/actions/checkout | ||
- uses: actions/checkout@v2 | ||
# https://github.com/actions/setup-node | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node_version }} | ||
architecture: ${{ matrix.architecture }} | ||
# fetch ci.sh from trusted source | ||
- run: git fetch origin alpha && git checkout origin/alpha ci.sh | ||
# run nodejs coverages and tests | ||
- run: sh ci.sh shCiBase | ||
# shCiBase - end |
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,29 @@ | ||
# Changelog | ||
|
||
## Todo | ||
- doc - add svg package-listing. | ||
- ci - continue addng regression tests and improve code-coverage. | ||
- none | ||
|
||
## v9999.99.99 | ||
- none | ||
|
||
## v2021.5.21 | ||
- this ci-release does not change any core-functionality of file jslint.js | ||
- doc - add file CHANGELOG.md | ||
- ci - begin addng regression tests and improve code-coverage. | ||
- ci - allow pull-requests to run restricted-ci (cannot upload artifacts). | ||
- gh-pages - fix missing assets and insecure http-links. | ||
- gh-pages - merge file jslint.css into index.html. | ||
- gh-pages - add files image-jslint-xxx.png. | ||
- gh-pages - cleanup asset naming-convention. | ||
- fix missing fonts in function.html and help.html. | ||
- add files .gitconfig, Daley-Bold.woff2, Programma-Bold.woff2, icon-folder-open-solid.svg, icon-window-maximize-regular.svg. | ||
- ci - fix http-links after moving to jslint-org. | ||
- doc - migrate file README to README.md with embedded ci links and screenshots. | ||
- ci - add macos and windows to ci-matrix. | ||
- ci - ci now fails if jslint-check fails for any of the files in branches. | ||
- ci - add github-workflows to generate code-coverage for jslint.js. | ||
|
||
## v2020.11.6 | ||
- vestigial |
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.