Skip to content

Workflow for Node

Workflow for Node #4

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Node.js CI
# for consistency with the Laravel CI
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
# unsure of the version we would want here but for testing purposes I'm using my local version
node-version: '22.3.0'
- name: Install packages
run: npm ci
- name: Run node
run: npm run dev