mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
49 lines
939 B
YAML
49 lines
939 B
YAML
name: 'Test'
|
|
|
|
on:
|
|
push:
|
|
branches: [develop]
|
|
pull_request:
|
|
branches: [master, develop]
|
|
|
|
jobs:
|
|
test-unit:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@v3.5.0'
|
|
|
|
- name: 'Use Node.js'
|
|
uses: 'actions/setup-node@v3.6.0'
|
|
with:
|
|
node-version: '18.x'
|
|
cache: 'npm'
|
|
|
|
- name: 'Install'
|
|
run: 'npm install'
|
|
|
|
- name: 'Unit Test'
|
|
run: 'npm run test:unit'
|
|
|
|
test-e2e:
|
|
runs-on: 'ubuntu-latest'
|
|
steps:
|
|
- uses: 'actions/checkout@v3.5.0'
|
|
|
|
- name: 'Use Node.js'
|
|
uses: 'actions/setup-node@v3.6.0'
|
|
with:
|
|
node-version: '18.x'
|
|
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'
|