We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9d75ca2 + 873b879 commit 9478895Copy full SHA for 9478895
3 files changed
.github/workflows/pr-check.yml
@@ -0,0 +1,32 @@
1
+name: Check Pull Request
2
+on:
3
+ pull_request:
4
+ types:
5
+ - opened
6
+ - synchronize
7
+ - reopened
8
+ branches:
9
+ - master
10
+
11
+concurrency:
12
+ group: pr-check-${{ github.event.pull_request.number }}
13
+ cancel-in-progress: true
14
15
+jobs:
16
+ test:
17
+ runs-on: ubuntu-latest
18
19
+ steps:
20
+ - name: Checkout Repository
21
+ uses: actions/checkout@v5
22
23
+ - name: Install Node.js
24
+ uses: actions/setup-node@v6
25
+ with:
26
+ node-version: current
27
28
+ - name: Install Dependencies
29
+ run: npm ci --ignore-scripts
30
31
+ - name: Run Tests
32
+ run: npm run test
0 commit comments