Skip to content

Commit

Permalink
adds linting build step
Browse files Browse the repository at this point in the history
  • Loading branch information
kwhitley committed Jun 21, 2023
1 parent dd29652 commit 0034c47
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: lint

on:
push:
branches: [v4.x]
pull_request:
branches: [v4.x]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: Install dependencies
run: yarn
- run: yarn lint

0 comments on commit 0034c47

Please sign in to comment.