upload props #3
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: project-build | |
on: push | |
jobs: | |
secrets-gate: | |
runs-on: ubuntu-latest | |
outputs: | |
ok: ${{ steps.check-secrets.outputs.ok }} | |
steps: | |
- name: check for secrets needed to run workflows | |
id: check-secrets | |
run: | | |
if [ ${{ secrets.PROJECT_BUILD_ENABLED }} == 'true' ]; then | |
echo "ok=enabled" >> $GITHUB_OUTPUT | |
fi | |
compile-codebase: | |
needs: | |
- secrets-gate | |
if: ${{ needs.secrets-gate.outputs.ok == 'enabled' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Ethereal Engine | |
uses: actions/checkout@v3 | |
with: | |
repository: etherealengine/etherealengine | |
- name: Checkout Project | |
uses: actions/checkout@v3 | |
with: | |
path: './packages/projects/projects/${{ github.event.repository.name }}' | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: restore lerna | |
uses: actions/cache@v3 | |
with: | |
path: | | |
node_modules | |
*/*/node_modules | |
package-lock.json | |
key: ${{ runner.os }}-branch-build-${{ hashFiles('**/package.json') }} | |
- run: cp .env.local.default .env.local | |
- run: npm install --production=false --loglevel notice --legacy-peer-deps | |
- run: npm run lint | |
- run: npm run check-errors | |
- run: npm run dev-docker | |
- run: npm run dev-reinit | |
- run: npx lerna run --ignore '@etherealengine/*' test | |
- run: npm run build-client |