-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (56 loc) · 1.65 KB
/
Copy pathtests.yml
File metadata and controls
68 lines (56 loc) · 1.65 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
67
68
name: CI / Tests
on:
workflow_dispatch:
pull_request:
branches: ["main", "development"]
push:
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20.x, 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 }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Verify (format, typecheck, test)
run: npm run verify
dist:
name: Verify dist is in sync with source
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
# The Action runs the committed dist/index.js, not src/. This job rebuilds the
# bundle and fails if the committed output drifts from source, so a release can
# never ship a stale bundle.
- name: Use Node.js 24.x
uses: actions/setup-node@v6
with:
node-version: 24.x
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Rebuild bundle
run: npm run build
- name: Fail if committed dist/ is stale
run: |
if ! git diff --quiet -- dist/; then
echo "::error::dist/ is out of date with src/. Run 'npm run build' and commit the result."
git --no-pager diff --stat -- dist/
exit 1
fi
echo "dist/ matches a clean build from src/."