|
@@ -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
|