Skip to content

Commit

Permalink
build: update workflow and standardize check name
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoehnelt committed May 10, 2022
1 parent 51731aa commit 20c94a0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.

name: CI
name: Test

on:
- push
- pull_request
jobs:
build:
matrix:
runs-on: ubuntu-latest

strategy:
Expand All @@ -38,3 +38,9 @@ jobs:
if: github.event_name == 'push' && github.actor != 'dependabot[bot]'
env:
GOOGLE_MAPS_API_KEY: ${{ secrets.SYNCED_GOOGLE_MAPS_API_KEY_SERVICES }}
test:
name: Wait for matrix to finish
needs: [matrix]
runs-on: ubuntu-latest
steps:
- run: echo "Test matrix finished"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ Node.js Client for Google Maps Services
=======================================

[![npm](https://img.shields.io/npm/v/@googlemaps/google-maps-services-js.svg)](https://www.npmjs.com/package/@googlemaps/google-maps-services-js)
![CI](https://github.com/googlemaps/google-maps-services-js/workflows/CI/badge.svg)
![Release](https://github.com/googlemaps/google-maps-services-js/workflows/Release/badge.svg)
![Test](https://github.com/googlemaps/google-maps-services-js/workflows/test/badge.svg)
![Release](https://github.com/googlemaps/google-maps-services-js/workflows/release/badge.svg)
[![codecov](https://codecov.io/gh/googlemaps/google-maps-services-js/branch/master/graph/badge.svg)](https://codecov.io/gh/googlemaps/google-maps-services-js)
![GitHub contributors](https://img.shields.io/github/contributors/googlemaps/google-maps-services-js?color=green)
[![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)
[![Discord](https://img.shields.io/discord/676948200904589322)](https://discord.gg/jRteCzP)


> 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).
> 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).
Use Node.js? Want to [geocode][Geocoding API] something? Looking
for [directions][Directions API]?
Expand Down

0 comments on commit 20c94a0

Please sign in to comment.