Skip to content

Commit 7610423

Browse files
committed
fix: build commands
1 parent f0c7686 commit 7610423

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci-bun.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: CI
22

3-
# on:
4-
# push:
5-
# branches:
6-
# - master
7-
# pull_request:
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
88

99
permissions:
1010
actions: read
@@ -26,7 +26,7 @@ jobs:
2626
- uses: nrwl/nx-set-shas@v4
2727

2828
- name: Install Playwright Browsers
29-
run: npx playwright install --with-deps
29+
run: bunx playwright install --with-deps
3030

3131
- run: bun nx affected -t lint test build
3232
- run: bun nx affected --parallel 1 -t e2e-ci

.github/workflows/ci-npm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
- name: Install Playwright Browsers
3030
run: npx playwright install --with-deps
3131

32-
- run: npm nx affected -t lint test build
33-
- run: npm nx affected --parallel 1 -t e2e-ci
32+
- run: npx nx affected -t lint test build
33+
- run: npx nx affected --parallel 1 -t e2e-ci
3434
- uses: actions/upload-artifact@v4
3535
if: ${{ !cancelled() }}
3636
with:

0 commit comments

Comments
 (0)