Skip to content

Commit

Permalink
nodejs github action
Browse files Browse the repository at this point in the history
  • Loading branch information
georgios-uber committed Oct 29, 2019
1 parent 13870df commit 7d82b3d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Node CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: GitHub Action for Yarn
uses: Borales/actions-yarn@v2.0.0
- name: npm install, build, and test
run: |
yarn
yarn bootstrap
env:
CI: true

0 comments on commit 7d82b3d

Please sign in to comment.