2022-02-19 16:05:21 +01:00
|
|
|
name: 'Test'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-02-20 12:36:37 +01:00
|
|
|
branches: [develop]
|
2022-02-19 16:05:21 +01:00
|
|
|
pull_request:
|
|
|
|
branches: [master, develop]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
steps:
|
2023-07-02 15:54:50 +02:00
|
|
|
- uses: 'actions/checkout@v3.5.3'
|
2022-02-19 16:05:21 +01:00
|
|
|
|
2023-05-13 15:41:12 +02:00
|
|
|
- name: 'Setup Node.js'
|
2023-04-02 20:53:26 +02:00
|
|
|
uses: 'actions/setup-node@v3.6.0'
|
2022-02-19 16:05:21 +01:00
|
|
|
with:
|
|
|
|
node-version: 'lts/*'
|
|
|
|
cache: 'npm'
|
|
|
|
|
2023-05-13 15:41:12 +02:00
|
|
|
- name: 'Install dependencies'
|
|
|
|
run: 'npm clean-install'
|
2022-02-19 16:05:21 +01:00
|
|
|
|
|
|
|
- name: 'Test'
|
|
|
|
run: 'npm run test'
|