-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove travis and use GH actions * Upgrade solidity-comments-extractor * Use test:all script in CI * Add cross-env in scripts * remove codecov * update readme * remove node 10 * alphaorderftw * Remove unnecessary matrix.node * Remove vyper installation Co-authored-by: mattia richetto <[email protected]>
- Loading branch information
1 parent
9f8e549
commit 46551b4
Showing
6 changed files
with
99 additions
and
146 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,83 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v2 | ||
id: cache | ||
with: | ||
path: | | ||
node_modules | ||
key: ${{ runner.os }}-${{ hashFiles('package-lock.json') }} | ||
- name: Install | ||
run: npm install | ||
- name: lint | ||
run: npm run lint | ||
|
||
test_linux: | ||
name: Test on Linux with Node ${{ matrix.node }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node: [12, 14, 15] | ||
steps: | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v2 | ||
id: cache | ||
with: | ||
path: | | ||
node_modules | ||
key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('package-lock.json') }} | ||
- name: Install | ||
run: npm install | ||
- name: Run tests | ||
run: npm run test:all | ||
|
||
test_macos: | ||
name: Test on MacOS with Node 12 | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v2 | ||
id: cache | ||
with: | ||
path: | | ||
node_modules | ||
key: ${{ runner.os }}-${{ hashFiles('package-lock.json') }} | ||
- name: Install | ||
run: npm install | ||
- name: Run tests | ||
run: npm run test:all | ||
|
||
test_windows: | ||
name: Test on Windows with Node 12 | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
- uses: actions/checkout@v2 | ||
- name: Install | ||
run: npm install | ||
- name: Run tests | ||
run: npm run test:all |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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