Skip to content

Commit

Permalink
2024 version (#37)
Browse files Browse the repository at this point in the history
* Adding book edition & upgrading to 2024

* Add detail testing

* Removing fakeAsync unneeded

* Linter fixes

* Add codecov badge
  • Loading branch information
fdodino authored Jun 17, 2024
1 parent fa56b18 commit a122724
Show file tree
Hide file tree
Showing 45 changed files with 4,329 additions and 3,649 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ jobs:
node-version: [20.x]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- name: Cache node modules
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -33,8 +33,7 @@ jobs:
npm ci
npm run test:prod
npm run lint
- name: Coverage badge
uses: demyanets/angular-coverage-badges-action@v1
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
coverage-summary-path: coverage/eg-libros-angular/coverage-summary.json
github_token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"editor.formatOnSaveMode": "file", // required to format on save
},
"editor.codeActionsOnSave": {
"source.fixAll": true
"source.fixAll": "explicit"
}
}
Loading

0 comments on commit a122724

Please sign in to comment.