-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (35 loc) · 1003 Bytes
/
quality.yml
File metadata and controls
46 lines (35 loc) · 1003 Bytes
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
name: Quality checks
on:
pull_request:
branches: [main]
push:
branches: [main]
permissions:
contents: read
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
jobs:
quality:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: "20"
package-manager-cache: false
- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.9"
- name: Install dependencies (Node 20)
run: timeout 300s bun install --frozen-lockfile
- name: Release readiness gate (Node 20)
run: timeout 1800s bun run release:gate
- uses: actions/setup-node@v5
with:
node-version: "22"
package-manager-cache: false
- name: Install dependencies (Node 22)
run: timeout 300s bun install --frozen-lockfile
- name: Release readiness gate (Node 22)
run: timeout 1800s bun run release:gate