Skip to content

fix: The drag & drop used to import resources #664

fix: The drag & drop used to import resources

fix: The drag & drop used to import resources #664

Workflow file for this run

name: PR - Linux Build
on:
push:
branches-ignore:
- develop
- main
workflow_dispatch:
inputs:
force_build_node_module:
description: 'Force build node_modules'
type: boolean
default: false
required: true
jobs:
build:
name: Build Studio
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ubuntu-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