2024-12-23 21:18:55 +00:00
|
|
|
name: Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2025-05-05 23:46:38 +01:00
|
|
|
workflow_dispatch:
|
2024-12-23 21:18:55 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
run-tests:
|
2025-05-05 23:36:14 +01:00
|
|
|
runs-on: nixos-x86_64-linux
|
2024-12-23 21:18:55 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
2025-03-02 18:07:22 +00:00
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v4
|
2024-12-23 21:18:55 +00:00
|
|
|
with:
|
2025-03-02 18:07:22 +00:00
|
|
|
node-version: "latest"
|
|
|
|
- name: Run npm clean install and build
|
2024-12-23 21:18:55 +00:00
|
|
|
run: |
|
2025-03-02 18:07:22 +00:00
|
|
|
npm ci
|
|
|
|
npm run build
|