[Simple Metronome] Flutter upgrades & Rust bridge upgrade to v2 #1808
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: Web-based builds | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build-javascript: | |
name: Build legacy JavaScript apps | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- uses: dorny/paths-filter@v2 | |
id: changes | |
with: | |
filters: | | |
src: | |
- 'package.json' | |
- 'turbo.json' | |
- 'yarn.lock' | |
- 'packages/**' | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '18.9.0' | |
if: steps.changes.outputs.src == 'true' | |
- name: restore caches | |
uses: actions/cache@v2 | |
if: steps.changes.outputs.src == 'true' | |
with: | |
path: | | |
node_modules | |
*/*/node_modules | |
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
- name: Install dependencies | |
if: steps.changes.outputs.src == 'true' | |
run: yarn | |
- name: Run tests | |
run: yarn run test | |
if: steps.changes.outputs.src == 'true' | |
- name: Run builds | |
run: yarn run build | |
if: steps.changes.outputs.src == 'true' | |
- name: Upload tremolo-plugin-frontend build | |
uses: actions/upload-artifact@v2 | |
if: steps.changes.outputs.src == 'true' | |
with: | |
name: tremolo-plugin-frontend | |
path: ./packages/tremolo-plugin-frontend/build |