Skip to content

Node CI

Node CI #62

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.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 check
run: |
mkdir $HOME/test-npm
npm install helphero --prefix $HOME/test-npm
- name: yarn checks
run: yarn