Skip to content

Merge pull request #72 from Cardinal-Cryptography/ck-gha-fix-01 #193

Merge pull request #72 from Cardinal-Cryptography/ck-gha-fix-01

Merge pull request #72 from Cardinal-Cryptography/ck-gha-fix-01 #193

Workflow file for this run

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@v4
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