Files
lnd-andal-uiux/.github/workflows/validate.yml
2020-12-08 08:48:56 -08:00

18 lines
312 B
YAML

name: validate
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 12
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: make validate.ci