mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-08-06 13:45:17 +02:00
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
32 lines
588 B
YAML
32 lines
588 B
YAML
name: Test Frontend
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "frontend/**"
|
|
- ".github/workflows/frontend-test.yml"
|
|
push:
|
|
paths:
|
|
- "frontend/**"
|
|
- ".github/workflows/frontend-test.yml"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: install dependencies
|
|
working-directory: frontend
|
|
run: npm i
|
|
|
|
- name: build frontend
|
|
working-directory: frontend
|
|
run: npm run build
|