Skip to content

Commit

Permalink
feat: lint check (#278)
Browse files Browse the repository at this point in the history
* feat: lint check

* fix: directory

* fix: workflow file

* fix: workflow

* fix: workflow

* fix: directory

* fix: directory

* fix: workflow
  • Loading branch information
radko93 authored Jun 23, 2022
1 parent 07ee46c commit 2d9564a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: lint & typescript check

on: push

jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./template
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: yarn
- run: mv _eslintrc.js .eslintrc.js && mv _prettierrc.js .prettierrc.js
- name: Lint code
run: yarn lint

0 comments on commit 2d9564a

Please sign in to comment.