Skip to content

Commit

Permalink
Added an initial version of the node workflow, commiting in order to …
Browse files Browse the repository at this point in the history
…test its functionality
  • Loading branch information
YasinKaryagdi authored and Kamieljv committed Sep 6, 2024
1 parent 6d765ac commit 966fc7e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Node.js CI

on:
# temp for testing puposes
push

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

0 comments on commit 966fc7e

Please sign in to comment.