Skip to content

Commit

Permalink
basic github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kokes committed May 11, 2020
1 parent 9a225eb commit 3ed9c32
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/yarn-test.yml
@@ -0,0 +1,20 @@
name: Node.js testing

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x, 14.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: yarn install
- run: yarn test

0 comments on commit 3ed9c32

Please sign in to comment.