mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-08-24 21:59:21 +00:00
45 lines
951 B
YAML
45 lines
951 B
YAML
name: setup-gcloud Unit
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
pull_request:
|
|
branches:
|
|
- 'main'
|
|
workflow_dispatch:
|
|
|
|
|
|
concurrency:
|
|
group: '${{github.workflow}}-${{ github.head_ref || github.ref }}'
|
|
cancel-in-progress: true
|
|
|
|
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@v3'
|
|
|
|
- uses: 'actions/setup-node@v3'
|
|
with:
|
|
node-version: '16.x'
|
|
|
|
- name: 'npm ci'
|
|
run: 'npm ci'
|
|
|
|
- name: 'npm build'
|
|
run: 'npm run build'
|
|
|
|
- name: 'run lint'
|
|
run: 'npm run lint'
|
|
# There's no need to run the linter for each operating system, since it
|
|
# will find the same thing 3x and clog up the PR review.
|
|
if: ${{matrix.operating-system == 'ubuntu-latest'}}
|
|
|
|
- name: 'test'
|
|
run: 'npm test'
|