Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into wip1023
Browse files Browse the repository at this point in the history
  • Loading branch information
JackatDJL authored Jan 16, 2024
2 parents 629f40c + 4528c1e commit 428140b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
testRunner:
name: Test in ${{ matrix.testMode }} ✨
runs-on: ubuntu-latest
permissions: write-all
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -44,17 +45,20 @@ jobs:
restore-keys: |
Library-test-project-
Library-
- name: Run tests ⏯ 📑
- name: Run ${{ matrix.testMode }} Tests ⏯ 📑
id: runningTest
uses: game-ci/[email protected]
id: testRunner
with:
projectPath: ${{ vars.projectPath }}
testMode: ${{ matrix.testMode }}
checkName: ${{ matrix.testMode }} test results
githubToken: ${{ secrets.GITHUB_TOKEN }}
projectPath: ${{ vars.projectPath }}

# Upload artifacts
- name: Upload Artifact 📦
uses: actions/upload-artifact@v3
with:
name: Test results (${{ matrix.testMode }}) 📑
path: ${{ steps.testRunner.outputs.artifactsPath }}
path: ${{ steps.runningTest.outputs.artifactsPath }}

4 changes: 4 additions & 0 deletions .github/workflows/DeployWorkingPreAlpha.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
testRunner:
name: Test in ${{ matrix.testMode }} ✨
runs-on: ubuntu-latest
permissions: write-all
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -62,6 +63,7 @@ jobs:
name: Build for WebGL 🖥️
needs: testRunner
runs-on: ubuntu-latest
permissions: write-all
strategy:
fail-fast: false
steps:
Expand Down Expand Up @@ -109,6 +111,7 @@ jobs:
needs: buildWGL
name: Deploy to Github Pages 🚀
runs-on: ubuntu-latest
permissions: read-all
steps:
- name: Checkout code ✅
uses: actions/checkout@v4
Expand All @@ -129,6 +132,7 @@ jobs:
name: Build for Windows 🖥️
needs: testRunner
runs-on: ubuntu-latest
permissions: write-all
strategy:
fail-fast: false
steps:
Expand Down

0 comments on commit 428140b

Please sign in to comment.