ci: check linting in CI
This commit is contained in:
parent
5e83e14637
commit
5ef3aa4153
1 changed files with 29 additions and 0 deletions
29
.github/workflows/lint.yml
vendored
Normal file
29
.github/workflows/lint.yml
vendored
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches: '*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Install node
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: 16
|
||||||
|
- name: Cache
|
||||||
|
uses: actions/cache@v2
|
||||||
|
id: cache
|
||||||
|
with:
|
||||||
|
path: '**/node_modules'
|
||||||
|
key: yarn-v1-${{ hashFiles('**/yarn.lock') }}
|
||||||
|
- name: Install
|
||||||
|
run: yarn --immutable
|
||||||
|
if: steps.cache.outputs.cache-hit != 'true'
|
||||||
|
- name: Lint
|
||||||
|
run: yarn lint
|
Loading…
Reference in a new issue