Browse Source

Create test.yml

Yawei sun 8 months ago
parent
commit
4d283eb629
1 changed files with 24 additions and 0 deletions
  1. 24 0
      .github/workflows/test.yml

+ 24 - 0
.github/workflows/test.yml

@@ -0,0 +1,24 @@
+name: Run Tests
+
+on:
+  pull_request:  # 监听 Pull Request 事件
+
+jobs:
+  test:
+    runs-on: ubuntu-latest
+
+    steps:
+      - name: Checkout code
+        uses: actions/checkout@v4
+
+      - name: Setup Node.js
+        uses: actions/setup-node@v4
+        with:
+          node-version: "20"
+          registry-url: "https://registry.npmjs.org"
+
+      - name: Install dependencies
+        run: npm install
+
+      - name: Run tests
+        run: npm test