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.
1 parent 8e70bc1 commit 2566642Copy full SHA for 2566642
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: 🚀 CI Pipeline
2
+
3
+# Dependencies:
4
+# - SocketDev/socket-registry/.github/workflows/ci.yml
5
6
+on:
7
+ push:
8
+ branches: [main]
9
+ tags: ['*']
10
+ pull_request:
11
12
+ workflow_dispatch:
13
14
+permissions:
15
+ contents: read
16
17
+concurrency:
18
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
19
+ cancel-in-progress: true
20
21
+jobs:
22
+ ci:
23
+ name: Run CI Pipeline
24
+ uses: SocketDev/socket-registry/.github/workflows/ci.yml@main
25
+ with:
26
+ coverage-script: 'pnpm run test:unit:coverage'
27
+ coverage-report-script: 'pnpm run coverage:percent --json'
28
+ test-setup-script: 'pnpm run build'
29
+ type-check-setup-script: 'pnpm run build'
0 commit comments