Skip to content

Commit

Permalink
Change github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
duyet committed Sep 8, 2019
1 parent d451b79 commit 1d91cae
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/on_pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: PriceTrack Workflow on Pull Request

on: [pull_request]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 8.x
- name: Lint functions
run: |
cd functions
npm install
npm run lint
- name: Lint hosting
run: |
cd hosting
npm install
npm run lint
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Node CI
name: PriceTrack Workflow on Push

on: [push]

Expand Down

0 comments on commit 1d91cae

Please sign in to comment.