Skip to content

Commit

Permalink
feat: Update to Angular 12
Browse files Browse the repository at this point in the history
BREAKING CHANGE: all 3rd party dependencies require bumped version numbers
  • Loading branch information
ersimont committed May 18, 2021
1 parent 106962f commit d527860
Show file tree
Hide file tree
Showing 110 changed files with 5,214 additions and 6,795 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/test-suite.yml → .github/workflows/main.yml
@@ -1,13 +1,14 @@
name: Test Suite
on: [push]
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 10.x
node-version: 14.x

- uses: actions/cache@v2
with:
Expand All @@ -17,7 +18,7 @@ jobs:

- run: yarn build-libs

- run: yarn test --watch=false --progress=false --browsers=ChromeHeadlessCI
- run: yarn test --no-watch --no-progress --browsers=ChromeHeadlessCI

- run: sudo apt-get update
- run: sudo apt-get install google-chrome-stable
Expand All @@ -27,9 +28,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 10.x
node-version: 14.x

- uses: actions/cache@v2
with:
Expand All @@ -39,6 +41,5 @@ jobs:

- run: yarn build-libs

- run: yarn lint
- run: yarn eslint
- run: yarn ts-node scripts/dtslint-all
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -12,7 +12,6 @@

# profiling files
chrome-profiler-events*.json
speed-measure-plugin*.json

# IDEs and editors
.project
Expand Down
1 change: 0 additions & 1 deletion .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .idea/runConfigurations/app_state___build.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .idea/runConfigurations/js_core___build.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/runConfigurations/micro_dash___build.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .idea/runConfigurations/ng_app_state___build.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .idea/runConfigurations/ng_core___build.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/runConfigurations/ng_dev___build.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .idea/runConfigurations/rxjs_core___build.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions TODO.md
@@ -1,3 +1,10 @@
- v12

- Move completely to ESLint
- Convert e2e tests to something.
- Check for cool new TS features to use.
- Open issue request about enabling ivy for ng-dev?

- landing page to link to all API docs
- coveralls
- help may be here, to combine multiple coverage runs into one report: https://github.com/angular/angular-cli/issues/11268
Expand Down

0 comments on commit d527860

Please sign in to comment.