Skip to content

Commit

Permalink
add ci-plugin.yml (#1)
Browse files Browse the repository at this point in the history
* first go at ci-plugin.yml
* add node 16, windows, macos
  • Loading branch information
devinstewart authored Sep 7, 2021
1 parent 8ec501f commit 3443c2b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci-plugin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: ci

on:
push:
branches:
- master
pull_request:

jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows, macos]
node: ['16', '14', '12']

runs-on: ${{ matrix.os }}-latest
name: ${{ matrix.os }} node@${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: install
run: npm install
- name: test
run: npm test

0 comments on commit 3443c2b

Please sign in to comment.