We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 634f7ed commit 96c0f87Copy full SHA for 96c0f87
.github/workflows/production.yaml
@@ -8,7 +8,27 @@ on:
8
- master
9
- production
10
jobs:
11
+ test:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+
16
+ - name: Setup Node.js
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: '22'
20
21
+ - name: Install dependencies
22
+ run: npm ci
23
24
+ - name: Run Vitest
25
+ run: npx vitest run
26
27
+ - name: Install Playwright Browsers
28
+ run: npx playwright test
29
30
Deploy-Production:
31
+ needs: test
32
runs-on:
33
labels: ubuntu-latest
34
steps:
.github/workflows/tests.yaml
@@ -22,5 +22,8 @@ jobs:
- name: Run Vitest
run: npx vitest run
0 commit comments