2023-11-14 14:36:31 +01:00
|
|
|
name: Test build [DEVELOP]
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch: {}
|
|
|
|
|
|
|
|
env:
|
|
|
|
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out Git repository
|
2024-06-20 08:17:09 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-11-14 14:36:31 +01:00
|
|
|
with:
|
|
|
|
ref: develop
|
|
|
|
|
|
|
|
- name: Install Node.js
|
2024-06-20 08:17:09 +02:00
|
|
|
uses: actions/setup-node@v4
|
2023-11-14 14:36:31 +01:00
|
|
|
with:
|
|
|
|
node-version: 20
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm i
|
|
|
|
|
|
|
|
- name: "Build"
|
|
|
|
run: npm run build
|