We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad20a04 commit 9111f3cCopy full SHA for 9111f3c
1 file changed
.github/workflows/test-integration-node.yml
@@ -0,0 +1,35 @@
1
+name: Integration tests - License Kit (Node)
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - '.github/workflows/test-integration-node.yaml'
9
+ - 'packages/license-kit/**/*.[tj]sx?'
10
+ - 'packages/shared/**/*.[tj]sx?'
11
+ - 'examples/node-example/**/*.[tj]sx?'
12
13
+ push:
14
15
16
17
+ workflow_dispatch:
18
19
+concurrency: ${{ github.workflow }}-${{ github.ref }}
20
21
+jobs:
22
+ integration-test-node:
23
+ name: Run integration tests for license-kit
24
+ runs-on: ubuntu-latest
25
+ steps:
26
+ - name: Checkout Repo
27
+ uses: actions/checkout@v4
28
+ with:
29
+ fetch-depth: 0
30
31
+ - name: Setup
32
+ uses: ./.github/actions/setup
33
34
+ - name: Run integration tests
35
+ run: yarn workspace license-kit-node-example test
0 commit comments