Skip to content

Commit 2ac9e33

Browse files
chore: ci update
1 parent a5de1aa commit 2ac9e33

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed
Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
name: CI
22

3+
defaults:
4+
run:
5+
shell: bash
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
311
on:
412
push:
513
branches: ["main"]
@@ -11,14 +19,16 @@ jobs:
1119
test:
1220
runs-on: ubuntu-24.04
1321
timeout-minutes: 3
22+
env:
23+
NODE_ENV: test
1424
steps:
1525
- name: Checkout
1626
uses: actions/checkout@v4
1727

1828
- name: Setup PNPM
1929
uses: pnpm/action-setup@v4
2030
with:
21-
version: 9
31+
version: 10.28.2
2232

2333
- name: Setup NodeJS
2434
uses: actions/setup-node@v4
@@ -28,7 +38,7 @@ jobs:
2838

2939
- name: Install dependencies
3040
run: |
31-
pnpm install
41+
pnpm install --silent --frozen-lockfile --prefer-offline
3242
pnpm exec playwright install chromium
3343
3444
- name: Lint

0 commit comments

Comments
 (0)