1
0
mirror of https://github.com/psychopy/psychojs.git synced 2025-05-10 02:30:53 +00:00

Testing workflows

This commit is contained in:
Nikita Agafonov 2023-08-29 14:01:13 +01:00 committed by GitHub
parent 941b4425b9
commit 4ab2af527f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

29
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,29 @@
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
env:
CODESIGN_PASSWORD: ${{ secrets.OST_CERT_PWORD }}
CODESIGN_FILE: "codesign-certificate.pfx"
CODESIGN_B64: ${{ secrets.OST_CERT_B64 }}
run: |
cd app
npm run build:js
ls out