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

Merge pull request #17 from andrinoff/renovate/actions-setup-node-4.x #21

Merge pull request #17 from andrinoff/renovate/actions-setup-node-4.x

Merge pull request #17 from andrinoff/renovate/actions-setup-node-4.x #21

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install --prefix=public
- name: Build project
run: npm run build --prefix=public