-
Notifications
You must be signed in to change notification settings - Fork 5.5k
53 lines (44 loc) · 1.25 KB
/
test-electrobun-release.yml
File metadata and controls
53 lines (44 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Validate Electrobun Release Workflow
on:
pull_request:
branches: [main, develop]
workflow_dispatch:
concurrency:
group: test-electrobun-release-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
env:
BUN_VERSION: "1.3.13"
NODE_NO_WARNINGS: "1"
jobs:
validate-release-workflow:
name: Release Workflow Contract
runs-on: ${{ vars.RUNNER_UBUNTU || 'ubuntu-24.04' }}
timeout-minutes: 20
defaults:
run:
shell: bash -euo pipefail {0}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
filter: blob:none
submodules: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
- name: Setup Bun workspace
uses: ./.github/actions/setup-bun-workspace
with:
bun-version: ${{ env.BUN_VERSION }}
install-command: bun install --ignore-scripts
install-native-deps: "false"
run-postinstall: "true"
init-submodules: "false"
- name: Run regression matrix contract
run: bun run test:regression-matrix:release-contract
- name: Run release contract suite
run: bun run test:release:contract