Skip to content

Commit

Permalink
chore(ci): add lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Aug 17, 2023
1 parent cf9444a commit 63649dc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/lint.yml
@@ -0,0 +1,16 @@
name: Lint

on: [push]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint

0 comments on commit 63649dc

Please sign in to comment.