mirror of https://github.com/Fabio286/antares.git
34 lines
627 B
YAML
34 lines
627 B
YAML
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
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: develop
|
|
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Install dependencies
|
|
run: npm i
|
|
|
|
- name: "Build"
|
|
run: npm run build
|