Skip to content
This repository has been archived by the owner on Mar 31, 2023. It is now read-only.

Commit

Permalink
Update nodejs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
itigoore01 authored Oct 2, 2019
1 parent a3cd35e commit a4e29ba
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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: npm ci, lint, test and build
run: |
npm ci
npm run lint
npm test -- praparat --no-watch --no-progress --browsers=ChromeHeadlessCI
npm run build -- praparat
npm run build -- demo-app --prod
env:
CI: true

0 comments on commit a4e29ba

Please sign in to comment.