소스 검색

ci: add GH actions for checking the linter

release-8443
Saúl Ibarra Corretgé 5 년 전
부모
커밋
5f8ce7661d
1개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제
  1. 16
    0
      .github/workflows/ci.yml

+ 16
- 0
.github/workflows/ci.yml 파일 보기

@@ -0,0 +1,16 @@
1
+name: Simple CI
2
+
3
+on: [pull_request]
4
+
5
+jobs:
6
+  run-ci:
7
+    name: Build
8
+    runs-on: ubuntu-latest
9
+    steps:
10
+    - uses: actions/checkout@v2
11
+    - uses: actions/setup-node@v1
12
+      with:
13
+        node-version: '12.x'
14
+    - run: npm install
15
+    - run: npm run lint
16
+    - run: npm run test

Loading…
취소
저장