-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #254 from aeternity/release/6.0.0
Release 6.0.0
- Loading branch information
Showing
80 changed files
with
8,752 additions
and
9,298 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
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,44 @@ | ||
name: Test | ||
on: | ||
push: | ||
branches: [master, develop] | ||
pull_request: | ||
jobs: | ||
main: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- run: | | ||
wget -q https://packages.erlang-solutions.com/erlang/debian/pool/esl-erlang_25.0.4-1~ubuntu~jammy_amd64.deb | ||
sudo apt install --allow-downgrades ./esl-erlang_25.0.4-1~ubuntu~jammy_amd64.deb | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 100 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.x # minimum supported version | ||
- uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.npm | ||
~/.autorest | ||
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} | ||
- run: npm ci | ||
- name: Run Commitlint | ||
if: github.event_name == 'pull_request' | ||
env: | ||
HEAD: ${{ github.event.pull_request.head.sha }} | ||
BASE: ${{ github.event.pull_request.base.sha }} | ||
run: npx commitlint --from $BASE --to $HEAD --verbose | ||
- run: npm run lint | ||
- run: docker compose up -d --wait | ||
- name: Ensure that docs are up to date | ||
run: npm run docs && git diff | ||
- run: npx c8 npm test | ||
- run: npx c8 report --reporter=text-lcov > coverage.lcov | ||
- uses: codecov/codecov-action@v4 | ||
with: | ||
files: coverage.lcov | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
- run: docker compose logs | ||
if: always() |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
node_modules | ||
docs | ||
/test-results.xml | ||
.tern-port | ||
.tern-project | ||
.dir-locals.el | ||
/.envrc | ||
/yarn-error.log | ||
.idea | ||
/docker-compose.override.yml | ||
/pnpm-debug.log | ||
bin | ||
/.nyc_output | ||
/test-artifacts | ||
/coverage | ||
/coverage.lcov |
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,7 @@ | ||
process.env._EXPECTED_MINE_RATE = 1000 | ||
process.env._MICRO_BLOCK_CYCLE = 300 | ||
|
||
module.exports = { | ||
recursive: true, | ||
timeout: '4s', | ||
} |
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
Oops, something went wrong.