2023-10-23 23:11:41 +02:00
|
|
|
name: "Test"
|
2023-01-02 15:23:16 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [develop]
|
|
|
|
pull_request:
|
2024-09-07 00:03:10 +02:00
|
|
|
branches: [main, develop]
|
2023-01-02 15:23:16 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2023-10-23 23:11:41 +02:00
|
|
|
runs-on: "ubuntu-latest"
|
2023-01-02 15:23:16 +01:00
|
|
|
steps:
|
2024-09-07 00:03:10 +02:00
|
|
|
- uses: "actions/checkout@v4.1.7"
|
2023-01-02 15:23:16 +01:00
|
|
|
|
2023-10-23 23:11:41 +02:00
|
|
|
- name: "Setup Node.js"
|
2024-09-07 00:03:10 +02:00
|
|
|
uses: "actions/setup-node@v4.0.3"
|
2023-01-02 15:23:16 +01:00
|
|
|
with:
|
2024-11-11 13:24:45 +01:00
|
|
|
node-version: "lts/*"
|
2023-10-23 23:11:41 +02:00
|
|
|
cache: "npm"
|
2023-01-02 15:23:16 +01:00
|
|
|
|
2023-10-23 23:11:41 +02:00
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "npm clean-install"
|
2023-01-02 15:23:16 +01:00
|
|
|
|
2023-10-23 23:11:41 +02:00
|
|
|
- name: "Test"
|
2024-09-07 00:03:10 +02:00
|
|
|
run: "node --run test"
|