Skip to content

Add MIT license in case anyone else wants to use this #5

Add MIT license in case anyone else wants to use this

Add MIT license in case anyone else wants to use this #5

Workflow file for this run

name: Build Node.js app
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['22.x', '23.x']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build code
run: npm run build