2023-10-23 23:26:27 +02:00
|
|
|
name: "Test"
|
2021-06-17 18:48:19 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-08-26 23:58:19 +02:00
|
|
|
branches: [develop]
|
2021-06-17 18:48:19 +02:00
|
|
|
pull_request:
|
2022-08-26 16:29:20 +02:00
|
|
|
branches: [master, develop]
|
2021-06-17 18:48:19 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2023-10-23 23:26:27 +02:00
|
|
|
runs-on: "ubuntu-latest"
|
2021-06-17 18:48:19 +02:00
|
|
|
steps:
|
2023-12-26 22:24:32 +01:00
|
|
|
- uses: "actions/checkout@v4.1.1"
|
2021-06-17 18:48:19 +02:00
|
|
|
|
2023-10-23 23:26:27 +02:00
|
|
|
- name: "Setup Node.js"
|
2023-12-26 22:24:32 +01:00
|
|
|
uses: "actions/setup-node@v4.0.1"
|
2021-06-17 18:48:19 +02:00
|
|
|
with:
|
2023-10-23 23:26:27 +02:00
|
|
|
node-version: "lts/*"
|
|
|
|
cache: "npm"
|
2021-06-17 18:48:19 +02:00
|
|
|
|
2023-10-23 23:26:27 +02:00
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "npm clean-install"
|
2021-06-17 18:48:19 +02:00
|
|
|
|
2023-10-23 23:26:27 +02:00
|
|
|
- name: "Test"
|
|
|
|
run: "npm run test"
|
2022-08-26 23:47:48 +02:00
|
|
|
|
|
|
|
test-e2e:
|
2023-10-23 23:26:27 +02:00
|
|
|
runs-on: "ubuntu-latest"
|
2022-08-26 23:47:48 +02:00
|
|
|
steps:
|
2023-12-26 22:24:32 +01:00
|
|
|
- uses: "actions/checkout@v4.1.1"
|
2022-08-26 23:47:48 +02:00
|
|
|
|
2023-10-23 23:26:27 +02:00
|
|
|
- name: "Setup Node.js"
|
2023-12-26 22:24:32 +01:00
|
|
|
uses: "actions/setup-node@v4.0.1"
|
2022-08-26 23:47:48 +02:00
|
|
|
with:
|
2023-10-23 23:26:27 +02:00
|
|
|
node-version: "lts/*"
|
|
|
|
cache: "npm"
|
2022-08-26 23:47:48 +02:00
|
|
|
|
2023-10-23 23:26:27 +02:00
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "npm clean-install"
|
2022-08-26 23:47:48 +02:00
|
|
|
|
2023-10-23 23:26:27 +02:00
|
|
|
- name: "Build Package"
|
|
|
|
run: "npm run build"
|
2022-08-26 23:47:48 +02:00
|
|
|
|
2023-10-23 23:26:27 +02:00
|
|
|
- name: "Build Example"
|
|
|
|
run: "cd example && npm clean-install && npm run build"
|
2022-08-26 23:47:48 +02:00
|
|
|
|
2023-10-23 23:26:27 +02:00
|
|
|
- name: "End To End (e2e) Test Example"
|
|
|
|
run: "cd example && npm run test:e2e"
|