2022-02-23 19:46:44 +01:00
|
|
|
name: 'Test'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [develop]
|
|
|
|
pull_request:
|
|
|
|
branches: [master, develop]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test-unit:
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
steps:
|
2023-04-02 22:44:09 +02:00
|
|
|
- uses: 'actions/checkout@v3.5.0'
|
2022-02-23 19:46:44 +01:00
|
|
|
|
|
|
|
- name: 'Use Node.js'
|
2023-01-10 23:56:46 +01:00
|
|
|
uses: 'actions/setup-node@v3.6.0'
|
2022-02-23 19:46:44 +01:00
|
|
|
with:
|
2022-10-03 20:52:15 +02:00
|
|
|
node-version: '18.x'
|
2022-02-23 19:46:44 +01:00
|
|
|
cache: 'npm'
|
|
|
|
|
|
|
|
- name: 'Install'
|
|
|
|
run: 'npm install'
|
|
|
|
|
|
|
|
- name: 'Unit Test'
|
|
|
|
run: 'npm run test:unit'
|
|
|
|
|
2023-05-09 23:22:33 +02:00
|
|
|
test-e2e:
|
2022-02-23 19:46:44 +01:00
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
steps:
|
2023-04-02 22:44:09 +02:00
|
|
|
- uses: 'actions/checkout@v3.5.0'
|
2022-02-23 19:46:44 +01:00
|
|
|
|
|
|
|
- name: 'Use Node.js'
|
2023-01-10 23:56:46 +01:00
|
|
|
uses: 'actions/setup-node@v3.6.0'
|
2022-02-23 19:46:44 +01:00
|
|
|
with:
|
2022-10-03 20:52:15 +02:00
|
|
|
node-version: '18.x'
|
2022-02-23 19:46:44 +01:00
|
|
|
cache: 'npm'
|
|
|
|
|
|
|
|
- name: 'Install'
|
|
|
|
run: 'npm install'
|
|
|
|
|
|
|
|
- name: 'Build'
|
|
|
|
run: 'npm run build'
|
|
|
|
|
|
|
|
- name: 'html-w3c-validator'
|
|
|
|
run: 'npm run test:html-w3c-validator'
|
|
|
|
|
|
|
|
- name: 'End To End (e2e) Test'
|
|
|
|
run: 'npm run test:e2e'
|