Skip to content

Commit 6df90fa

Browse files
authored
Merge pull request #2 from valeeraZ/dev
client code workflow
2 parents 0a64226 + a23e5a2 commit 6df90fa

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/client_tests.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Client Code Quality Check
2+
3+
on: push
4+
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v2
11+
- name: Install dependencies
12+
run: npm install
13+
working-directory: ./client
14+
- name: Run linting
15+
run: npm run lint
16+
working-directory: ./client

0 commit comments

Comments
 (0)