Skip to content

Test with project template #2

Test with project template

Test with project template #2

Workflow file for this run

name: Website CI

Check failure on line 1 in .github/workflows/website_ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/website_ci.yml

Invalid workflow file

you may only define one of `paths` and `paths-ignore` for a single event
on:
push:
branches-ignore:
- "main"
paths:
- "website/**"
pull_request:
paths-ignore:
- "**.md"
- ".vscode/"
paths:
- "website/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
run: npm ci
working-directory: website
- name: Build website
run: npm run build
working-directory: website