fix: The drag & drop used to import resources #664
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |