mirror of
https://github.com/stakwork/sphinx-relay.git
synced 2026-08-13 12:33:24 +02:00
18 lines
326 B
YAML
18 lines
326 B
YAML
name: Lint (Pull Request)
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint (Pull Request)
|
|
runs-on:
|
|
- ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v2
|
|
- name: install npm dependencies
|
|
run: npm i
|
|
- name: lint
|
|
run: npm run lint
|