Skip to content

Staking app updates #56

Staking app updates

Staking app updates #56

Workflow file for this run

name: Build and Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install dependencies
run: npm ci --include=dev
- name: Build and lint
run: |
npm run build
npm run lint