-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* paused the tests because sharp breaks * ADD cicd and changelog
- Loading branch information
1 parent
5b5cefb
commit ef8dc44
Showing
4 changed files
with
58 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
## Objective | ||
What is the goal? | ||
|
||
## Description | ||
What changed, how and why? | ||
|
||
## Acceptance | ||
How were changes tested? | ||
|
||
## Checklist | ||
- [ ] I have added relevant info to the CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Format and Lint | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
format-and-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install Node.js dependencies | ||
run: npm ci | ||
|
||
- name: Formatting with Prettier | ||
run: npm run format | ||
|
||
- name: Linting with ESLint | ||
run: npm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# MapTiler Client Changelog | ||
|
||
## DEVEL | ||
### New Features | ||
### Bug Fixes | ||
### Others | ||
|
||
## 1.7.0 | ||
### New Features | ||
- DEM elevation API (https://github.com/maptiler/maptiler-client-js/pull/24) | ||
|
||
### Bug Fixes | ||
- `geocoding.byId` can now be used with the apiKey (https://github.com/maptiler/maptiler-client-js/pull/27) | ||
- the Typescript types are now properly exported (https://github.com/maptiler/maptiler-client-js/pull/25) | ||
|
||
### Others | ||
- the Typescript `moduleResolution` is now `"Bundler"` (used to be `"Node"`) (https://github.com/maptiler/maptiler-client-js/pull/28) | ||
- updated some dev-dependencies (https://github.com/maptiler/maptiler-client-js/pull/28) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters