Skip to content

Commit

Permalink
add travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Aniket-Engg committed Jul 4, 2023
1 parent 23cf55e commit f402436
Show file tree
Hide file tree
Showing 4 changed files with 156 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/runSolc.yml

This file was deleted.

13 changes: 13 additions & 0 deletions .travis.yml
@@ -0,0 +1,13 @@
language: node_js
node_js:
- "19"

cache:
directories:
- $HOME/.npm

jobs:
include:
- stage: tests
name: "Compile"
script: npm run compile
117 changes: 117 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions package.json
@@ -0,0 +1,26 @@
{
"name": "solidity-school",
"version": "1.0.0",
"description": "First place for early developers to learn Solidity",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "solc **/**/*.sol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aniket-Engg/solidity-school.git"
},
"keywords": [
"solidity"
],
"author": "Aniket-Engg",
"license": "ISC",
"bugs": {
"url": "https://github.com/Aniket-Engg/solidity-school/issues"
},
"homepage": "https://github.com/Aniket-Engg/solidity-school#readme",
"devDependencies": {
"solc": "^0.8.20"
}
}

0 comments on commit f402436

Please sign in to comment.