-
Notifications
You must be signed in to change notification settings - Fork 42
31 lines (27 loc) · 852 Bytes
/
ci.yml
File metadata and controls
31 lines (27 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: 🚀 CI Pipeline
# Dependencies:
# - SocketDev/socket-registry/.github/workflows/ci.yml
on:
push:
branches: [main]
tags: ['*']
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
ci:
name: Run CI Pipeline
uses: SocketDev/socket-registry/.github/workflows/ci.yml@17c8e09407f67149512e95e082a9c77dfe8e27a4 # main
with:
coverage-script: 'pnpm run test:unit:coverage'
coverage-report-script: 'pnpm run coverage:percent --json'
fail-fast: false
lint-script: 'pnpm run lint-ci'
node-versions: '[20, 22, 24]'
os-versions: '["ubuntu-latest", "windows-latest"]'
test-script: 'pnpm run test-ci'
test-setup-script: 'pnpm run pretest:unit'
type-check-script: 'pnpm run type-ci'
type-check-setup-script: 'pnpm run pretest:unit'