parent
41d84e4654
commit
43c73d4a8c
4 changed files with 0 additions and 73 deletions
@ -1,26 +0,0 @@ |
||||
name: Node.js CI |
||||
|
||||
on: |
||||
push: |
||||
branches: [ master ] |
||||
pull_request: |
||||
branches: [ master ] |
||||
|
||||
jobs: |
||||
build: |
||||
|
||||
runs-on: ubuntu-latest |
||||
|
||||
strategy: |
||||
matrix: |
||||
node-version: [10.x, 12.x, 14.x, 15.x] |
||||
|
||||
steps: |
||||
- uses: actions/checkout@v2 |
||||
- name: Use Node.js ${{ matrix.node-version }} |
||||
uses: actions/setup-node@v1 |
||||
with: |
||||
node-version: ${{ matrix.node-version }} |
||||
- run: npm ci |
||||
- run: npm run build --if-present |
||||
- run: npm test |
@ -1,13 +0,0 @@ |
||||
{ |
||||
"name": "BF", |
||||
"version": "1.0.0", |
||||
"lockfileVersion": 1, |
||||
"requires": true, |
||||
"dependencies": { |
||||
"mblf-lang": { |
||||
"version": "1.0.1", |
||||
"resolved": "https://registry.npmjs.org/mblf-lang/-/mblf-lang-1.0.1.tgz", |
||||
"integrity": "sha512-pCyq6smnrfzQkZn1c+jlUuojc/Gs/R9MApPY8KqjFoPGhV6Bx+UdFQSWXReWBAkg7ipbetYSaCSq9aGj7PvU4g==" |
||||
} |
||||
} |
||||
} |
@ -1,27 +0,0 @@ |
||||
{ |
||||
"name": "BF", |
||||
"version": "1.0.0", |
||||
"description": "So instead of making yet another quine, which many already did before me, with greater conciseness then could be achieved in these few days,, it would be cool to spark new life into an already existing quine.", |
||||
"main": "index.js", |
||||
"directories": { |
||||
"test": "test" |
||||
}, |
||||
"scripts": { |
||||
"build": "./build.sh", |
||||
"test": "node test/wordFactList.js" |
||||
}, |
||||
"repository": { |
||||
"type": "git", |
||||
"url": "git+https://github.com/MBLF-Project/Quine-stuff.git" |
||||
}, |
||||
"keywords": [], |
||||
"author": "", |
||||
"license": "ISC", |
||||
"bugs": { |
||||
"url": "https://github.com/MBLF-Project/Quine-stuff/issues" |
||||
}, |
||||
"homepage": "https://github.com/MBLF-Project/Quine-stuff#readme", |
||||
"dependencies": { |
||||
"mblf-lang": "^1.0.1" |
||||
} |
||||
} |
@ -1,7 +0,0 @@ |
||||
#!/usr/bin/env node
|
||||
const assert = require('assert') |
||||
const fs = require('fs') |
||||
|
||||
fs.readFile("quine.bf", (_, output) => { |
||||
assert.equal(output, "<+[-<+]-ÿ<<<<<<<[.>]") |
||||
}) |
Loading…
Reference in new issue