@@ -19,35 +19,35 @@ permissions:
1919
2020jobs :
2121 # @TODO: Remove the `build` job later
22- build :
23- name : Build
24- runs-on : ubuntu-latest
25- steps :
26- - uses : actions/checkout@v5
27- with :
28- persist-credentials : false
29-
30- - uses : actions/setup-go@v6
31- with :
32- go-version : ' stable'
33-
34- - name : Build backend
35- uses : magefile/mage-action@6f50bbb8ea47d56e62dee92392788acbc8192d0b
36- with :
37- args : buildAll
38- version : latest
39-
40- - name : Install frontend dependencies
41- run : npm ci --no-audit --fund=false
42-
43- - name : Build frontend
44- run : npm run build
45- env :
46- NODE_OPTIONS : ' --max_old_space_size=4096'
22+ # build:
23+ # name: Build
24+ # runs-on: ubuntu-latest
25+ # steps:
26+ # - uses: actions/checkout@v5
27+ # with:
28+ # persist-credentials: false
29+
30+ # - uses: actions/setup-go@v6
31+ # with:
32+ # go-version: 'stable'
33+
34+ # - name: Build backend
35+ # uses: magefile/mage-action@6f50bbb8ea47d56e62dee92392788acbc8192d0b
36+ # with:
37+ # args: buildAll
38+ # version: latest
39+
40+ # - name: Install frontend dependencies
41+ # run: npm ci --no-audit --fund=false
42+
43+ # - name: Build frontend
44+ # run: npm run build
45+ # env:
46+ # NODE_OPTIONS: '--max_old_space_size=4096'
4747
4848 e2e :
4949 name : Bench Tests
50- needs : build
50+ # needs: build
5151 runs-on : ubuntu-latest
5252 timeout-minutes : 60
5353
5959 - uses : actions/checkout@v5
6060 with :
6161 persist-credentials : false
62-
63- # - name: Setup Node.js environment
64- # uses: actions/setup-node@v6
65- # with:
66- # node-version-file: .nvmrc
67- # cache: 'npm'
6862
6963 - name : Get secrets from Vault
7064 id : get-secrets
8882 run : |
8983 echo "${{ fromJSON(steps.get-secrets.outputs.secrets).DS_INSTANCE_HOST }}" "${{ fromJSON(steps.get-secrets.outputs.secrets).DS_INSTANCE_PORT }}"
9084
91- # - name: Install npm dependencies
92- # run: |
93- # if [ -f yarn.lock ]; then
94- # yarn install --frozen-lockfile --non-interactive
95- # else
96- # npm ci --no-audit --fund=false
97- # fi
98-
99- # - name: Install Playwright Browsers
100- # run: npx playwright install --with-deps chromium
101-
10285 - name : Run Grafana Bench tests
10386 run : |
10487 set -euo pipefail
0 commit comments