File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " 🧪 v3 CLI e2e tests"
2
+ on :
3
+ push :
4
+ branches :
5
+ - cli-v3-integration-test-suite-setup
6
+ jobs :
7
+ e2e :
8
+ name : " 🧪 v3 CLI e2e tests"
9
+ runs-on : buildjet-8vcpu-ubuntu-2204
10
+ strategy :
11
+ fail-fast : false
12
+ matrix :
13
+ package-manager : ["npm", "pnpm", "yarn"]
14
+ steps :
15
+ - name : ⬇️ Checkout repo
16
+ uses : actions/checkout@v3
17
+ with :
18
+ fetch-depth : 0
19
+
20
+ - name : ⎔ Setup pnpm
21
+
22
+ with :
23
+ version : 8.15.5
24
+
25
+ - name : ⎔ Setup node
26
+ uses : buildjet/setup-node@v3
27
+ with :
28
+ node-version : 20.11.1
29
+ cache : " pnpm"
30
+
31
+ - name : 📥 Download deps
32
+ run : pnpm install --frozen-lockfile --filter trigger.dev
33
+
34
+ - name : Run Unit Tests
35
+ run : |
36
+ PM=${{ matrix.package-manager }} pnpm --filter trigger.dev run test:e2e
You can’t perform that action at this time.
0 commit comments