2023-10-23 23:11:59 +02:00
|
|
|
name: "Test"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [develop]
|
|
|
|
pull_request:
|
|
|
|
branches: [master, develop]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test-unit:
|
2023-10-23 23:11:59 +02:00
|
|
|
runs-on: "ubuntu-latest"
|
2022-02-23 19:46:44 +01:00
|
|
|
steps:
|
2023-10-23 23:11:59 +02:00
|
|
|
- uses: "actions/checkout@v4.0.0"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
- name: "Setup Node.js"
|
|
|
|
uses: "actions/setup-node@v3.8.1"
|
2022-02-23 19:46:44 +01:00
|
|
|
with:
|
2023-10-23 23:11:59 +02:00
|
|
|
node-version: "20.x"
|
|
|
|
cache: "npm"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "npm clean-install"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
- name: "Unit Test"
|
|
|
|
run: "npm run test:unit"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
2023-05-09 23:22:33 +02:00
|
|
|
test-e2e:
|
2023-10-23 23:11:59 +02:00
|
|
|
runs-on: "ubuntu-latest"
|
2022-02-23 19:46:44 +01:00
|
|
|
steps:
|
2023-10-23 23:11:59 +02:00
|
|
|
- uses: "actions/checkout@v4.0.0"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
- name: "Setup Node.js"
|
|
|
|
uses: "actions/setup-node@v3.8.1"
|
2022-02-23 19:46:44 +01:00
|
|
|
with:
|
2023-10-23 23:11:59 +02:00
|
|
|
node-version: "20.x"
|
|
|
|
cache: "npm"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "npm clean-install"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
- name: "Build"
|
|
|
|
run: "npm run build"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
- name: "html-w3c-validator"
|
|
|
|
run: "npm run test:html-w3c-validator"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
- name: "End To End (e2e) Test"
|
|
|
|
run: "npm run test:e2e"
|