Skip to content

Decisions of Polkadot Update (for JAM) #421

Decisions of Polkadot Update (for JAM)

Decisions of Polkadot Update (for JAM) #421

Workflow file for this run

name: Main CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build
- run: yarn lint
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