Skip to content

Commit ac751f5

Browse files
committed
Removing uploading/downloading artifacts from the build since it is
now only used in one job and makes a negligible difference in build time
1 parent 2dbfb11 commit ac751f5

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,6 @@ jobs:
7373
- uses: ./.github/actions/setup
7474
- name: build
7575
run: pnpm vite build --mode=development
76-
- name: Upload build
77-
uses: actions/upload-artifact@v3
78-
with:
79-
name: dist
80-
path: dist
8176
- name: test
8277
run: pnpm test
8378

@@ -200,10 +195,8 @@ jobs:
200195
steps:
201196
- uses: actions/checkout@v4
202197
- uses: ./.github/actions/setup
203-
- uses: actions/download-artifact@v3
204-
with:
205-
name: dist
206-
path: dist
198+
- name: build
199+
run: pnpm vite build --mode=development
207200
- name: Setup firefox
208201
uses: browser-actions/setup-firefox@latest
209202
with:

0 commit comments

Comments
 (0)