diff --git a/.github/workflows/FissionBuild.yml b/.github/workflows/FissionBuild.yml new file mode 100644 index 0000000000..6e7a0b61db --- /dev/null +++ b/.github/workflows/FissionBuild.yml @@ -0,0 +1,38 @@ +name: Fission + +on: + workflow_dispatch: {} + push: + branches: [ master, dev ] + pull_request: + branches: [ master, dev ] + +jobs: + runUnitTests: + name: Unit Tests + 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: Unit Tests + id: unit-tests + run: | + cd fission + npm run test + continue-on-error: true + - name: Check Success + run: | + if [ ${{ steps.unit-tests.outcome }} == "success" ]; then + echo "Format Validation Passed" + else + echo "Format Validation Failed" + exit 1 + fi \ No newline at end of file