ソースを参照

Create verify.yml

Aykut Saraç 2 年 前
コミット
80ca1a38ca
1 ファイル変更17 行追加0 行削除
  1. 17 0
      .github/workflows/verify.yml

+ 17 - 0
.github/workflows/verify.yml

@@ -0,0 +1,17 @@
+name: Verify
+
+# Run action only on pull requests
+on:
+  pull_request:
+    branches:
+    - main
+
+jobs:
+  build:
+    name: Verify Build
+    runs-on: ubuntu-latest
+    steps:
+      - name: Check Lint
+        run: npm run lint
+      - name: Build
+        run: npm run build