Testing GCP
This commit is contained in:
parent
c6b867d888
commit
eb2497ffde
4
.gcloudignore
Normal file
4
.gcloudignore
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
.gcloudignore
|
||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
node_modules/
|
12
.github/workflows/lint.yml
vendored
12
.github/workflows/lint.yml
vendored
@ -2,9 +2,6 @@ name: Lint
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
pull_request:
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
@ -18,7 +15,8 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: 12.x
|
node-version: 12.x
|
||||||
|
|
||||||
- name: Install and lint
|
- name: Install dependencies
|
||||||
run: |
|
run: yarn
|
||||||
yarn
|
|
||||||
yarn lint
|
- name: Lint
|
||||||
|
run: yarn lint
|
||||||
|
22
.github/workflows/test.yml
vendored
Normal file
22
.github/workflows/test.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
name: Test
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: Setup Node.js 14.x
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: 14.x
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: yarn
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
run: yarn test
|
Loading…
x
Reference in New Issue
Block a user