Skip to content

Commit abf297a

Browse files
committed
Add CI workflow
1 parent aeac789 commit abf297a

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/cli-v3-e2e.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+
uses: pnpm/[email protected]
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

0 commit comments

Comments
 (0)