forked from dmmop/opencode-quota-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (51 loc) · 1.49 KB
/
Copy pathci.yml
File metadata and controls
66 lines (51 loc) · 1.49 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
54
55
56
57
58
59
60
61
62
63
64
65
66
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
pnpm-quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Use Node.js 24.x
uses: actions/setup-node@v6
with:
node-version: 24.x
- name: Activate pnpm
run: |
corepack enable
corepack prepare pnpm@11.0.0 --activate
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run canonical verification
run: pnpm verify
- name: Pack and audit exact npm artifact once
run: pnpm run pack:release-package package-artifacts
- name: Upload exact npm artifact
uses: actions/upload-artifact@v7
with:
name: package-tarball
path: package-artifacts/*
if-no-files-found: error
runtime-smoke:
runs-on: ubuntu-latest
needs: pnpm-quality
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Download exact npm artifact
uses: actions/download-artifact@v8
with:
name: package-tarball
path: package-artifacts
- name: Smoke exact npm artifact on Node ${{ matrix.node-version }}
run: node scripts/smoke-packed-package.mjs package-artifacts