2023-10-23 23:11:59 +02:00
|
|
|
name: "Build"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [develop]
|
|
|
|
pull_request:
|
|
|
|
branches: [master, develop]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-10-23 23:11:59 +02:00
|
|
|
runs-on: "ubuntu-latest"
|
2022-02-23 19:46:44 +01:00
|
|
|
steps:
|
2023-11-07 21:14:43 +01:00
|
|
|
- uses: "actions/checkout@v4.1.1"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
- name: "Setup Node.js"
|
2023-12-28 06:21:24 +01:00
|
|
|
uses: "actions/setup-node@v4.0.1"
|
2022-02-23 19:46:44 +01:00
|
|
|
with:
|
2023-10-23 23:11:59 +02:00
|
|
|
node-version: "20.x"
|
|
|
|
cache: "npm"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
- name: "Install dependencies"
|
|
|
|
run: "npm clean-install"
|
2022-02-23 19:46:44 +01:00
|
|
|
|
2023-10-23 23:11:59 +02:00
|
|
|
- name: "Build"
|
|
|
|
run: "npm run build"
|