Skip to content
This repository was archived by the owner on Oct 25, 2025. It is now read-only.

Merge pull request #37 from sergiomarquezdev/dependabot/npm_and_yarn/… #284

Merge pull request #37 from sergiomarquezdev/dependabot/npm_and_yarn/…

Merge pull request #37 from sergiomarquezdev/dependabot/npm_and_yarn/… #284

Workflow file for this run

name: CI - Test and Build
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
test-and-build:
name: Test and Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5.0.0
- name: Setup Node.js
uses: actions/setup-node@v4.4.0
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
env:
N8N_CONTACT_FORM_SECRET: ${{ secrets.N8N_CONTACT_FORM_SECRET }}