This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (57 loc) Β· 1.76 KB
/
test-e2e.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: test-e2e
on:
push:
branches:
[test/ee-bot-test]
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.PROJECTS_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
- name: Checkout ee-development-test-suite
uses: actions/checkout@v3
with:
repository: etherealengine/ee-development-test-suite
path: './packages/projects/projects/ee-development-test-suite'
ref: 'test/bot-test'
- name: Checkout ee-bot
uses: actions/checkout@v3
with:
repository: etherealengine/ee-bot
path: './packages/projects/projects/ee-bot'
- 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 check-eslint
- run: npm run dev-docker
- run: npm run dev-reinit
- run: npm run test-e2e
- run: npm run build-client