Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
🧹 Add "Build & Test" Workflow (#145)
  • Loading branch information
Patrick Ellis authored and GitHub committed Jun 2, 2021
1 parent 69990a6 commit 4d65903
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build_test.yml
@@ -0,0 +1,28 @@
name: Build & Test

on:
pull_request:
paths-ignore:
- '**.md'
push:
branches:
- main
- releases/*
paths-ignore:
- '**.md'

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Setup node 14
uses: actions/setup-node@v2
with:
node-version: 14.x
- run: npm install
- run: npm run build
- run: npm test

0 comments on commit 4d65903

Please sign in to comment.