-
Notifications
You must be signed in to change notification settings - Fork 2
68 lines (52 loc) · 1.31 KB
/
deploy.yml
File metadata and controls
68 lines (52 loc) · 1.31 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: Regression test Deploy
on:
push:
branches:
- release
paths:
- package.json
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
id-token: write # Required for OIDC
contents: read
jobs:
validate:
timeout-minutes: 20
runs-on: windows-2022
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: '24.x'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Unit tests with coverage gate
run: npm run test:ci
- name: Install browsers
run: npm run install:browsers
- name: Smoke reference generation
run: npm run ref -- --test-suite alloy
publish:
needs: validate
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: '24.x'
- name: Install dependencies
run: npm ci
- name: Build package
run: npm run build
- name: Publish to npm
run: npm publish --access public --provenance