Skip to content

Commit 6a3e39d

Browse files
Hristo313Hristo Hristov
andauthored
feat: add azure pipelines yaml files for angular, react and wc templates (#1396)
* feat: add azure pipelines yaml files for angular, react and wc templates * fix: add tests * chore: release version 14.4.4-beta.0 * fix: remove workflow folder * fix: move azure pipelines one level upper * chore: release version 14.4.4-beta.1 * fix(angular): increase node limit on test command * chore: release version 14.4.4-beta.2 * fix(wc): replace web-test-runner config with vitest * chore: release 14.4.4-beta.3 * chore: release 14.4.4-beta.4 --------- Co-authored-by: Hristo Hristov <[email protected]>
1 parent e2e8a6f commit 6a3e39d

File tree

63 files changed

+305
-124
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+305
-124
lines changed

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "igniteui-cli",
3-
"version": "14.4.3",
3+
"version": "14.4.4-beta.4",
44
"description": "CLI tool for creating Ignite UI projects",
55
"keywords": [
66
"CLI",
@@ -76,8 +76,8 @@
7676
"all": true
7777
},
7878
"dependencies": {
79-
"@igniteui/angular-templates": "~19.2.1443",
80-
"@igniteui/cli-core": "~14.4.3",
79+
"@igniteui/angular-templates": "~19.2.1444-beta.4",
80+
"@igniteui/cli-core": "~14.4.4-beta.4",
8181
"@inquirer/prompts": "^5.4.0",
8282
"@types/yargs": "^17.0.33",
8383
"chalk": "^5.3.0",
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Azure CI
2+
3+
trigger:
4+
branches:
5+
include: [ $(yamlDefaultBranch) ]
6+
7+
pr:
8+
branches:
9+
include: [ $(yamlDefaultBranch) ]
10+
11+
pool:
12+
vmImage: 'ubuntu-latest'
13+
14+
steps:
15+
- script: npm i # replace with 'npm ci' after committing lock file from first install
16+
displayName: 'Install dependencies'
17+
- script: npm run lint
18+
displayName: 'Run linter'
19+
continueOnError: true
20+
- script: npm run build
21+
displayName: 'Build the project'
22+
- script: npm run test
23+
displayName: 'Run tests'

packages/cli/templates/webcomponents/igc-ts/accordion/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcAccordionComponent', () => {

packages/cli/templates/webcomponents/igc-ts/avatar/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcAvatarComponent', () => {

packages/cli/templates/webcomponents/igc-ts/badge/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcBadgeComponent', () => {

packages/cli/templates/webcomponents/igc-ts/banner/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcBannerComponent', () => {

packages/cli/templates/webcomponents/igc-ts/button-group/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcButtonGroupComponent', () => {

packages/cli/templates/webcomponents/igc-ts/button/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcButtonComponent', () => {

packages/cli/templates/webcomponents/igc-ts/calendar/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcCalendarComponent', () => {

packages/cli/templates/webcomponents/igc-ts/card/default/files/src/app/__path__/__filePrefix__.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from '@open-wc/testing';
1+
import { describe, it, expect } from 'vitest';
22
import $(ClassName) from './$(path).js';
33

44
describe('IgcCardComponent', () => {

0 commit comments

Comments
 (0)