Skip to content

Commit 9111f3c

Browse files
committed
chore: implement workflow for license-kit integration tests
1 parent ad20a04 commit 9111f3c

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
branches:
15+
- main
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

Comments
 (0)