A0-3207: update aleph dashboard with upstream #164
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: Aleph Zero Dashboard CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: yarn install | |
- run: yarn build | |
- run: yarn lint | |
- run: yarn test | |
all: | |
# This job ensures that all jobs above (now we have just build) are successful. | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo Success |