Create Sequence audio2text-input #230
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: Make a refapps release with compiled package archives | |
on: pull_request | |
jobs: | |
build-only: | |
name: Build refapps | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Nodejs v16 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: ( cd scripts && npm install && ./run-script.js -w packages -e "npm install" ) | |
- name: Build sample sequences | |
run: ( cd scripts && npm run build ) | |
- name: Pack sample sequences | |
run: ( cd scripts && npm run pack ) | |
- name: List packages | |
run: ls -la dist/ |