egirlskey/.github/workflows/lint.yml

26 lines
469 B
YAML
Raw Normal View History

2021-10-27 16:16:13 +00:00
name: Lint
on:
push:
branches:
- master
- develop
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-node@v1
with:
node-version: 16.x
2021-11-18 08:41:19 +00:00
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
2021-10-27 16:16:13 +00:00
- run: yarn install
- run: yarn lint