Skip to content

Commit

Permalink
Release v13.0.0 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
why520crazy committed Dec 12, 2023
1 parent e5353dc commit 6cbf4c0
Show file tree
Hide file tree
Showing 10 changed files with 5,721 additions and 6,074 deletions.
7 changes: 5 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
version: 2
version: 2.1
orbs:
browser-tools: circleci/browser-tools@1.4.3
jobs:
build:
working_directory: ~/ngx-validator
docker:
- image: circleci/node:10-browsers
- image: cimg/node:18.16-browsers
steps:
- browser-tools/install-chrome
- checkout
- restore_cache:
key: ngx-validator-{{ .Branch }}-{{ checksum "package-lock.json" }}
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: CI NGX-VALIDATOR through Github Actions
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x

- name: Setup
run: npm ci
- name: Setup
run: npm ci

- name: Test
run: |
npm test -- --no-watch --no-progress --browsers=ChromeHeadlessCI
- name: Test
run: |
npm test -- --no-watch --no-progress --browsers=ChromeHeadlessCI
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ built
!.vscode/extensions.json

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
Expand Down
21 changes: 0 additions & 21 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,6 @@
"scripts": [],
"assets": ["packages/integration/src/favicon.ico", "packages/integration/src/assets"]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": ["packages/integration/src/tsconfig.app.json", "packages/integration/src/tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
}
}
}
},
Expand All @@ -116,13 +109,6 @@
"devServerTarget": "ngx-validator:serve:production"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": "e2e/tsconfig.e2e.json",
"exclude": ["**/node_modules/**"]
}
}
}
},
Expand Down Expand Up @@ -153,13 +139,6 @@
"codeCoverage": true,
"codeCoverageExclude": ["packages/core/src/testing/**/*"]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": ["packages/core/tsconfig.lib.json", "packages/core/tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
}
}
}
}
Expand Down
Loading

0 comments on commit 6cbf4c0

Please sign in to comment.