troylusty.com/.forgejo/workflows/test.yml

24 lines
416 B
YAML
Raw Normal View History

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
- name: Setup Node
uses: actions/setup-node@v4
2024-12-23 21:18:55 +00:00
with:
node-version: "latest"
- name: Run npm clean install and build
2024-12-23 21:18:55 +00:00
run: |
npm ci
npm run build