Skip to content

Commit 6c06202

Browse files
committed
chore: add data edge ci
1 parent 67fd967 commit 6c06202

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/ci-data-edge.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI - packages/data-edge
2+
3+
env:
4+
CI: true
5+
6+
on:
7+
push:
8+
branches: "*"
9+
paths:
10+
- packages/data-edge/**
11+
pull_request:
12+
branches: "*"
13+
paths:
14+
- packages/data-edge/**
15+
workflow_dispatch:
16+
17+
jobs:
18+
test-ci:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v4
23+
- name: Set up environment
24+
uses: ./.github/actions/setup
25+
- name: Run tests
26+
run: yarn test

0 commit comments

Comments
 (0)