Skip to content
Snippets Groups Projects
Unverified Commit 768335f3 authored by Hakim El Hattab's avatar Hakim El Hattab Committed by GitHub
Browse files

setup gh actions

parent 94d98ff7
No related branches found
No related tags found
No related merge requests found
name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment