2024-12-23 21:18:55 +00:00
|
|
|
name: Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
workflow_call:
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
run-tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
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
|