mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-08-21 16:39:23 +00:00
28 lines
532 B
YAML
28 lines
532 B
YAML
name: setup-gcloud Unit
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
run:
|
|
name: setup-gcloud
|
|
runs-on: ${{ matrix.operating-system }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set Node.js 12.x
|
|
uses: actions/setup-node@master
|
|
with:
|
|
node-version: 12.x
|
|
|
|
- name: npm install
|
|
run: npm install
|
|
|
|
- name: Lint
|
|
run: npm run lint
|
|
|
|
- name: Test
|
|
run: npm test
|