Skip to content

Commit 43dab84

Browse files
authored
2 parents 4b05c5f + 6c36514 commit 43dab84

77 files changed

Lines changed: 5459 additions & 1263 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yaml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
- next
8+
push:
9+
branches:
10+
- main
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
19+
- uses: actions/setup-node@v4
20+
with:
21+
node-version: '22'
22+
- run: npm ci
23+
- run: npm run test
24+
- run: npm run build
25+
26+
- uses: oven-sh/setup-bun@v2
27+
- run: bun run build:binary
28+
29+
integration:
30+
runs-on: ubuntu-latest
31+
if: github.event_name == 'push'
32+
steps:
33+
- uses: actions/checkout@v4
34+
with:
35+
fetch-depth: 0
36+
- uses: actions/setup-node@v4
37+
with:
38+
node-version: '22'
39+
- run: npm ci
40+
- run: npm run build
41+
- run: npm run test:integration
42+
env:
43+
TIGRIS_STORAGE_ACCESS_KEY_ID: ${{ secrets.TIGRIS_STORAGE_ACCESS_KEY_ID }}
44+
TIGRIS_STORAGE_SECRET_ACCESS_KEY: ${{ secrets.TIGRIS_STORAGE_SECRET_ACCESS_KEY }}

.github/workflows/pr.yaml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/workflows/release.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ jobs:
3434
- run: npm ci
3535
- run: npm run lint
3636
- run: npm run build
37-
- run: npm run test
37+
- run: npm run test:all
38+
env:
39+
TIGRIS_STORAGE_ACCESS_KEY_ID: ${{ secrets.TIGRIS_STORAGE_ACCESS_KEY_ID }}
40+
TIGRIS_STORAGE_SECRET_ACCESS_KEY: ${{ secrets.TIGRIS_STORAGE_SECRET_ACCESS_KEY }}
3841
- run: npm run publint
3942
- run: npm audit signatures
4043

0 commit comments

Comments
 (0)