From d0de9073e7e82c813da937cae37fa87a06c0b5f6 Mon Sep 17 00:00:00 2001
From: ludovic autin <autin@scripps.edu>
Date: Thu, 9 Apr 2020 09:04:11 +0200
Subject: [PATCH] Create lint.yml

---
 .github/workflows/lint.yml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 .github/workflows/lint.yml

diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
new file mode 100644
index 000000000..f702fdb72
--- /dev/null
+++ b/.github/workflows/lint.yml
@@ -0,0 +1,18 @@
+on:
+  push:
+  pull_request:
+
+jobs:
+  eslint:
+    name: eslint
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@v1
+    - name: install node v12
+      uses: actions/setup-node@v1
+      with:
+        node-version: 12
+    - name: yarn install
+      run: yarn install
+    - name: eslint
+      uses: icrawl/action-eslint@v1
-- 
GitLab