Skip to content

Commit

Permalink
Setting up a CI pipeline based on GitHub Actions (#754)
Browse files Browse the repository at this point in the history
* Setting up a CI pipeline based on GitHub Actions

* Removing GCB integration

* Renamed file
  • Loading branch information
hiranya911 committed Jan 13, 2020
1 parent 2cfa51a commit 9592302
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 12 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,26 @@
name: Node.js Continous Integration

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [8.x, 10.x]

steps:
- uses: actions/checkout@v1
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install, build and test
run: |
npm ci
npm run build
npm test
env:
CI: true
12 changes: 0 additions & 12 deletions cloudbuild.yaml

This file was deleted.

0 comments on commit 9592302

Please sign in to comment.