Skip to content

Commit

Permalink
Merge pull request #580 from psychopy/workflow_test2
Browse files Browse the repository at this point in the history
Create main.yml
  • Loading branch information
lightest authored Aug 29, 2023
2 parents 941b442 + 4e848b0 commit 30b53c5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build Branch
on: workflow_dispatch

jobs:
build_all:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
path: app
- uses: actions/setup-node@master
with:
node-version: 19
- name: Install Node dependencies
run: |
cd app
npm install
- name: Build
run: |
cd app
npm run build:js
ls out

0 comments on commit 30b53c5

Please sign in to comment.