repo(gh actions): disable

This commit is contained in:
Matteo Pagliazzi 2019-09-21 10:57:24 +02:00
parent b4ee784cf3
commit 326ec5c0e3

View file

@ -1,25 +0,0 @@
name: Node CI
on: [push]
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 install and test
run: |
npm install
npm test
env:
CI: true