Skip to content

Commit 20c94a0

Browse files
committed
build: update workflow and standardize check name
1 parent 51731aa commit 20c94a0

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/ci.yml renamed to .github/workflows/test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
name: CI
15+
name: Test
1616

1717
on:
1818
- push
1919
- pull_request
2020
jobs:
21-
build:
21+
matrix:
2222
runs-on: ubuntu-latest
2323

2424
strategy:
@@ -38,3 +38,9 @@ jobs:
3838
if: github.event_name == 'push' && github.actor != 'dependabot[bot]'
3939
env:
4040
GOOGLE_MAPS_API_KEY: ${{ secrets.SYNCED_GOOGLE_MAPS_API_KEY_SERVICES }}
41+
test:
42+
name: Wait for matrix to finish
43+
needs: [matrix]
44+
runs-on: ubuntu-latest
45+
steps:
46+
- run: echo "Test matrix finished"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ Node.js Client for Google Maps Services
22
=======================================
33

44
[![npm](https://img.shields.io/npm/v/@googlemaps/google-maps-services-js.svg)](https://www.npmjs.com/package/@googlemaps/google-maps-services-js)
5-
![CI](https://github.com/googlemaps/google-maps-services-js/workflows/CI/badge.svg)
6-
![Release](https://github.com/googlemaps/google-maps-services-js/workflows/Release/badge.svg)
5+
![Test](https://github.com/googlemaps/google-maps-services-js/workflows/test/badge.svg)
6+
![Release](https://github.com/googlemaps/google-maps-services-js/workflows/release/badge.svg)
77
[![codecov](https://codecov.io/gh/googlemaps/google-maps-services-js/branch/master/graph/badge.svg)](https://codecov.io/gh/googlemaps/google-maps-services-js)
88
![GitHub contributors](https://img.shields.io/github/contributors/googlemaps/google-maps-services-js?color=green)
99
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
1010
[![Discord](https://img.shields.io/discord/676948200904589322)](https://discord.gg/jRteCzP)
1111

1212

13-
> This library is a refactor of a previous version published to [@google/maps](https://www.npmjs.com/package/@google/maps). It is now being published to [@googlemaps/google-maps-services-js](https://www.npmjs.com/package/@googlemaps/google-maps-services-js). Source for the old version is at the [@google/maps branch](https://github.com/googlemaps/google-maps-services-js/tree/%40google/maps).
13+
> This library is a refactor of a previous version published to [@google/maps](https://www.npmjs.com/package/@google/maps). It is now being published to [@googlemaps/google-maps-services-js](https://www.npmjs.com/package/@googlemaps/google-maps-services-js).
1414
1515
Use Node.js? Want to [geocode][Geocoding API] something? Looking
1616
for [directions][Directions API]?

0 commit comments

Comments
 (0)