We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 755b81a commit b64ffb4Copy full SHA for b64ffb4
.github/workflows/e2e.yml
@@ -23,4 +23,4 @@ jobs:
23
run: npm test
24
env:
25
PAT_1: ${{ secrets.GITHUB_TOKEN }}
26
- GITHUB_REPOSITORY_OWNER: "rickstaa"
+ GITHUB_REPOSITORY_OWNER: "Daraan"
.github/workflows/prs-unit.yml
@@ -0,0 +1,24 @@
1
+name: PRS Unit Tests
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - prs.js
7
+ - index.js
8
+ - action.yml
9
+ workflow_dispatch:
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: actions/setup-node@v4
17
+ with:
18
+ node-version: 22
19
+ - name: Install dependencies
20
+ run: npm ci --ignore-scripts
21
+ shell: bash
22
+ - name: Run prs.js unit tests
+ run: npm test tests/prs.test.js
0 commit comments