Skip to content

Commit

Permalink
Merge dd3fc66 into 25d024c
Browse files Browse the repository at this point in the history
  • Loading branch information
noopkat committed Dec 13, 2020
2 parents 25d024c + dd3fc66 commit 5ee7bf9
Show file tree
Hide file tree
Showing 3 changed files with 1,811 additions and 1,708 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
platform: [ubuntu-latest, macos-latest, windows-latest]

runs-on: ${{ matrix.platform }}

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 i
- run: npm test
Loading

0 comments on commit 5ee7bf9

Please sign in to comment.