mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-08-21 13:09:24 +00:00
32 lines
710 B
YAML
32 lines
710 B
YAML
name: appengine-deploy Unit
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'appengine-deploy/**'
|
|
- '.github/workflows/appengine-deploy*'
|
|
pull_request:
|
|
paths:
|
|
- 'appengine-deploy/**'
|
|
- '.github/workflows/appengine-deploy*'
|
|
|
|
jobs:
|
|
run:
|
|
name: appengine-deploy
|
|
runs-on: ${{ matrix.operating-system }}
|
|
strategy:
|
|
matrix:
|
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@master
|
|
with:
|
|
node-version: 12.x
|
|
|
|
- name: npm install
|
|
run: npm install
|
|
working-directory: ./appengine-deploy
|
|
|
|
- name: npm lint
|
|
run: npm run lint
|
|
working-directory: ./appengine-deploy
|