World System and Basic Physics #4
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: Fission | |
on: | |
workflow_dispatch: {} | |
push: | |
branches: [ master, dev ] | |
pull_request: | |
branches: [ master, dev ] | |
jobs: | |
runUnitTests: | |
name: Package | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: JavaScript Setup | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
- name: Install Dependencies | |
run: | | |
cd fission | |
npm install | |
- name: Get package info | |
id: info | |
uses: codex-team/[email protected] | |
with: | |
path: fission/ | |
- name: Build | |
id: build | |
run: | | |
cd fission | |
npm run build | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
id: upload-artifact | |
with: | |
name: "${{ steps.info.outputs.name }}@${{ steps.info.outputs.version }} [$(date +'%Y-%m-%dT%H:%M:%S')]" | |
path: "dist" |