update tooling
This commit is contained in:
parent
aae8ce8428
commit
7c3be2621c
4 changed files with 92 additions and 51 deletions
21
.editorconfig
Normal file
21
.editorconfig
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# EditorConfig is awesome: https://EditorConfig.org
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
indent_size = 2
|
||||||
|
indent_style = tab
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
|
[*.{ls,yml,yaml}]
|
||||||
|
indent_style = space
|
||||||
|
|
||||||
|
[*.{cjs,js,mjs,ts}]
|
||||||
|
block_comment_start = /*
|
||||||
|
block_comment = *
|
||||||
|
block_comment_end = */
|
||||||
|
|
||||||
|
[*.{markdown,md}]
|
||||||
|
indent_style = space
|
||||||
|
trim_trailing_whitespace = false
|
|
@ -1,6 +1,27 @@
|
||||||
name: CI
|
name: 'Run tests on NodeJS'
|
||||||
|
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- '.github/workflows/node.yml'
|
||||||
|
- '1.0/*'
|
||||||
|
- '2.0/*'
|
||||||
|
- '2.5/*'
|
||||||
|
- '3.0/*'
|
||||||
|
- '4.0/*'
|
||||||
|
- 'package.json'
|
||||||
|
- 'pnpm-lock.yaml'
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- '.github/workflows/node.yml'
|
||||||
|
- '1.0/*'
|
||||||
|
- '2.0/*'
|
||||||
|
- '2.5/*'
|
||||||
|
- '3.0/*'
|
||||||
|
- '4.0/*'
|
||||||
|
- 'package.json'
|
||||||
|
- 'pnpm-lock.yaml'
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
default:
|
default:
|
|
@ -1,9 +1,8 @@
|
||||||
# Creative Commons Markdown
|
# Creative Commons Markdown
|
||||||
|
|
||||||
[](https://www.npmjs.org/package/cc-md)
|
[](https://github.com/idleberg/Creative-Commons-Markdown/blob/main/LICENSE)
|
||||||
[](https://www.npmjs.org/package/cc-md)
|
[](https://www.npmjs.org/package/cc-md)
|
||||||
[](https://github.com/idleberg/Creative-Commons-Markdown/actions)
|
[](https://github.com/idleberg/Creative-Commons-Markdown/actions)
|
||||||
|
|
||||||
|
|
||||||
On November 25th, 2013, [Creative Commons](http://creativecommons.org/) announced their next generation licenses: [Creative Commons 4.0](https://creativecommons.org/weblog/entry/40768). By default, these are available as [HTML](http://creativecommons.org/licenses/) or [plaintext](http://creativecommons.org/weblog/entry/41127). This project adds [Markdown](http://daringfireball.net/projects/markdown/)-formatted licenses to that list, while aiming for best [compatibility on GitHub](https://github.github.com/gfm/).
|
On November 25th, 2013, [Creative Commons](http://creativecommons.org/) announced their next generation licenses: [Creative Commons 4.0](https://creativecommons.org/weblog/entry/40768). By default, these are available as [HTML](http://creativecommons.org/licenses/) or [plaintext](http://creativecommons.org/weblog/entry/41127). This project adds [Markdown](http://daringfireball.net/projects/markdown/)-formatted licenses to that list, while aiming for best [compatibility on GitHub](https://github.github.com/gfm/).
|
||||||
|
|
||||||
|
|
Reference in a new issue