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 96144a0 commit 4cbea8cCopy full SHA for 4cbea8c
.github/workflows/sdk-client.yml
@@ -0,0 +1,24 @@
1
+name: shared/sdk-client
2
+
3
+on:
4
+ push:
5
+ branches: [main, 'feat/**']
6
+ paths-ignore:
7
+ - '**.md' #Do not need to run CI for markdown changes.
8
+ pull_request:
9
10
11
+ - '**.md'
12
13
+jobs:
14
+ build-test-sdk-client:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v3
18
+ - uses: actions/setup-node@v3
19
+ - id: shared
20
+ name: Shared CI Steps
21
+ uses: ./actions/ci
22
+ with:
23
+ workspace_name: '@launchdarkly/js-client-sdk-common'
24
+ workspace_path: packages/shared/sdk-client
0 commit comments