forked from pcanz/pPEGjs
-
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.
Format tests, clean up, add automated runner
- Loading branch information
Showing
4 changed files
with
212 additions
and
178 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,15 @@ | ||
name: Unit tests | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install | ||
run: npm install | ||
- name: Run tests | ||
run: npm test |
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 |
---|---|---|
@@ -1,34 +1,29 @@ | ||
{ | ||
"name": "ppegjs", | ||
"version": "0.1.2", | ||
"description": "A portable Parser Expression Grammar.", | ||
"main": "index.js", | ||
"type": "module", | ||
"directories": { | ||
"example": "examples", | ||
"test": "tests" | ||
}, | ||
"scripts": { | ||
"test": "node peg-play.mjs tests", | ||
"format": "biome format --write pPEG.mjs" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/crummy/pPEGjs.git" | ||
}, | ||
"keywords": [ | ||
"ppeg", | ||
"parser", | ||
"expression", | ||
"grammar" | ||
], | ||
"author": "Peter Cashin", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/pcanz/pPEGjs/issues" | ||
}, | ||
"homepage": "https://github.com/pcanz/pPEGjs#readme", | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.4" | ||
} | ||
"name": "ppegjs", | ||
"version": "0.1.2", | ||
"description": "A portable Parser Expression Grammar.", | ||
"main": "index.js", | ||
"type": "module", | ||
"directories": { | ||
"example": "examples", | ||
"test": "tests" | ||
}, | ||
"scripts": { | ||
"test": "node peg-play.mjs tests", | ||
"format": "biome format --write *.mjs" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/crummy/pPEGjs.git" | ||
}, | ||
"keywords": ["ppeg", "parser", "expression", "grammar"], | ||
"author": "Peter Cashin", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/pcanz/pPEGjs/issues" | ||
}, | ||
"homepage": "https://github.com/pcanz/pPEGjs#readme", | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.4" | ||
} | ||
} |
Oops, something went wrong.