Skip to content

Commit c30590d

Browse files
committed
test
1 parent 934fb62 commit c30590d

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

.github/workflows/CI_release.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,23 @@
1-
name: CI_Release
1+
pool:
2+
vmImage: 'ubuntu-latest'
3+
4+
stages:
5+
- stage: Setup
6+
jobs:
7+
- job: npminstall
8+
steps:
9+
- task: NodeTool@0
10+
inputs:
11+
versionSource: 'spec'
12+
versionSpec: '22.x'
13+
- task: Npm@1
14+
inputs:
15+
command: 'install'
16+
- stage: Package
17+
jobs:
18+
- job: package
19+
steps:
20+
- task: Npm@1
21+
inputs:
22+
command: 'custom'
23+
customCommand: 'run package'

0 commit comments

Comments
 (0)