-
Notifications
You must be signed in to change notification settings - Fork 27
38 lines (32 loc) · 941 Bytes
/
develop.yml
File metadata and controls
38 lines (32 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Development CI
on:
push:
branches: [develop]
workflow_dispatch:
inputs:
force_build_node_module:
description: 'Force build node_modules'
type: boolean
default: true
required: true
jobs:
build:
name: Build Studio
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Setup Environment
uses: ./.github/actions/setup_environment
with:
force_build_node_module: ${{ inputs.force_build_node_module || false }}
# # No linting because the team never actually agreed with any of those rules and eslint is 1000% of the time counter productive
# - name: Run linting
# shell: bash
# run: npm run lint
- name: Package Studio
uses: ./.github/actions/package_studio