We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5de1aa commit 2ac9e33Copy full SHA for 2ac9e33
.github/workflows/workflow.yml .github/workflows/ci.yml.github/workflows/workflow.yml renamed to .github/workflows/ci.yml
@@ -1,5 +1,13 @@
1
name: CI
2
3
+defaults:
4
+ run:
5
+ shell: bash
6
+
7
+concurrency:
8
+ group: ${{ github.workflow }}-${{ github.ref }}
9
+ cancel-in-progress: true
10
11
on:
12
push:
13
branches: ["main"]
@@ -11,14 +19,16 @@ jobs:
19
test:
20
runs-on: ubuntu-24.04
21
timeout-minutes: 3
22
+ env:
23
+ NODE_ENV: test
14
24
steps:
15
25
- name: Checkout
16
26
uses: actions/checkout@v4
17
27
18
28
- name: Setup PNPM
29
uses: pnpm/action-setup@v4
30
with:
- version: 9
31
+ version: 10.28.2
32
33
- name: Setup NodeJS
34
uses: actions/setup-node@v4
@@ -28,7 +38,7 @@ jobs:
38
39
- name: Install dependencies
40
run: |
- pnpm install
41
+ pnpm install --silent --frozen-lockfile --prefer-offline
42
pnpm exec playwright install chromium
43
44
- name: Lint
0 commit comments