Feature: Add more explanation why a node is badly scored (#115) #263
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
name: Tests | |
on: | |
push: | |
branches: ["*"] | |
tags: '*' | |
pull_request: | |
branches: ["*"] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: yarn lint | |
tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: yarn test | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Get git context | |
run: git fetch --prune --unshallow | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: yarn install | |
- name: Build | |
run: npx quasar build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: aleph-account | |
path: dist/spa | |
upload: | |
runs-on: ubuntu-22.04 | |
needs: [lint,tests,build] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download a single artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: aleph-account | |
path: dist/spa | |
- name: Upload the build on an IPFS node | |
run: | | |
find . | |
pip install 'aioipfs>=0.6.2' | |
python3 ./upload_build.py | |
export IPFS_CID=$(python3 ./upload_build.py) | |
echo "ipfs_cid=$IPFS_CID" >> $GITHUB_ENV | |
- name: Comment PR | |
if: github.event_name == 'pull_request' | |
uses: thollander/actions-comment-pull-request@v2 | |
with: | |
message: | | |
Deployed (not pinned) on https://ipfs-2.aleph.im/ipfs/${{ env.ipfs_cid }} |