2023-10-23 23:00:22 +02:00
|
|
|
name: "Test"
|
2022-02-19 16:05:21 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-02-20 12:36:37 +01:00
|
|
|
branches: [develop]
|
2022-02-19 16:05:21 +01:00
|
|
|
pull_request:
|
2024-02-16 20:04:49 +01:00
|
|
|
branches: [main, develop]
|
2022-02-19 16:05:21 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2023-10-23 23:00:22 +02:00
|
|
|
runs-on: "ubuntu-latest"
|
2022-02-19 16:05:21 +01:00
|
|
|
steps:
|
2023-12-22 00:23:29 +01:00
|
|
|
- uses: "actions/checkout@v4.1.1"
|
2022-02-19 16:05:21 +01:00
|
|
|
|
2023-10-23 23:00:22 +02:00
|
|
|
- name: "Setup Node.js"
|
2023-12-22 00:23:29 +01:00
|
|
|
uses: "actions/setup-node@v4.0.1"
|
2022-02-19 16:05:21 +01:00
|
|
|
with:
|
2023-10-23 23:00:22 +02:00
|
|
|
node-version: "lts/*"
|
|
|
|
cache: "npm"
|
2022-02-19 16:05:21 +01:00
|
|
|
|
2023-10-23 23:00:22 +02:00
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "npm clean-install"
|
2022-02-19 16:05:21 +01:00
|
|
|
|
2023-10-23 23:00:22 +02:00
|
|
|
- name: "Test"
|
|
|
|
run: "npm run test"
|